Why different size on 2 files?

I have 2 files, which has been created with same fil. But the size are very different. Why this different?

Answers (2)

madhan ravi
madhan ravi on 23 Oct 2018
Edited: madhan ravi on 23 Oct 2018

10 Comments

Thx. I'll look in to it.
Is it possible to see what data type the variables are saved as and how many bites they are?
yes of course
type in command window
whos yourvariable %variable which you want to see the data type
for example:
>> a=1
a =
1
>> whos a
Name Size Bytes Class Attributes
a 1x1 8 double
>>
Thx. If I do this for the different variables in the two files. It seems like the variables have the same size. ?
if true
Dat18 size bytes size of 1 variable class
dato 17615 140920 8 double File size: 14,8 mb
files 17615 3376212 191,6668748 cell
mappe 17615 2254720 128 cell
tog 17615 140920 8 double
Dat2017
dato 24454 195632 8 double File size: 206 kb
files 24454 4688868 191,7423734 cell
mappe 24454 3130112 128 cell
tog 24454 195632 8 double
% code
end
no they are not the same size
but the bytes are different
If I look at the bytes Dat2017 should be bigger than Dat18. But it isn't. So why is Dat18 so much bigger?
To be frank I agree your point , did you read that link completely?
I'm working on it. :)

Sign in to comment.

Rasmus Chrisander
Rasmus Chrisander on 23 Oct 2018
I used the function save.
: save(strcat(datainfo,year,'.mat'), 'fil', 'tog', 'dato', 'mappe')

Categories

Find more on Simulink in Help Center and File Exchange

Products

Release

R2014b

Tags

Asked:

on 23 Oct 2018

Commented:

on 24 Oct 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!