Filter löschen
Filter löschen

runtime load mat-file not proportional to size?

1 Ansicht (letzte 30 Tage)
Christian Tieber
Christian Tieber am 8 Feb. 2021
Kommentiert: Jan am 8 Feb. 2021
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!

Antworten (2)

Christian Tieber
Christian Tieber am 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 Kommentare
Christian Tieber
Christian Tieber am 8 Feb. 2021
hint: it has nothing to do with the path. Both paths point to the same drive.
Jan
Jan am 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?

Melden Sie sich an, um zu kommentieren.


Jan
Jan am 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 Kommentar
Christian Tieber
Christian Tieber am 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?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by