Clear Filters
Clear Filters

runtime load mat-file not proportional to size?

1 view (last 30 days)
It takes me 0.08 seconds to load a .mat-file with 138MB containing 367 nx1 double arrays.
But 0.57 seconds to load a .mat-file with 3MB containing one nx250 double array.
Why is that?
I changed the structure of the file to be faster. Now i am slower.
Thanks in advance!

Answers (2)

Christian Tieber
Christian Tieber on 8 Feb 2021
Same story if i just load, save and reload:
disp('load matfile: ');
tic
data = load(fullmatpath);
toc
dataPath = ['data\',filename];
save(dataPath, 'data');
disp('load data: ');
tic
load(dataPath);
toc
load matfile:
Elapsed time is 0.086910 seconds.
load data:
Elapsed time is 0.580817 seconds.
  2 Comments
Christian Tieber
Christian Tieber on 8 Feb 2021
hint: it has nothing to do with the path. Both paths point to the same drive.
Jan
Jan on 8 Feb 2021
If you do not use an absolute path name, Matlab searchs in its PATH.
Can you provide some test data, e.g. created by RAND, which reproduce your observations?

Sign in to comment.


Jan
Jan on 8 Feb 2021
Do you saved in compressed or uncompressed format? In v6, v7 or v7.3 style?
Is the file contained in the disk cache of your HDD or SSD? This will influence the speed massively also.
  1 Comment
Christian Tieber
Christian Tieber on 8 Feb 2021
"Do you saved in compressed or uncompressed format? In v6, v7 or v7.3 style?"
Tried all of them with similar results.
"Is the file contained in the disk cache of your HDD or SSD? This will influence the speed massively also."
I dont know. How can i find out?

Sign in to comment.

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!