Why do I not notice performance differences when saving MAT-files to an SSD vs an HDD?
Show older comments
I ran a saving test to measure the performance of MATLAB when saving MAT-files to various storage drives. I expected that saving large amounts of data to an SSD would be significantly faster than saving to an HDD, but only observed negligible differences in the saving time. Why am I not seeing better timing results for the SSD?
Example test code:
for i=1:1:1000
eval(['p',num2str(i),'=1:1:2e5;'])
end
test=1;
save test test
tic
for i=1:1:1000
eval(['save(','''','test','''',',','''','p',num2str(i),'''',',','''','-append','-v7.3','''',')'])
end
toc
Accepted Answer
More Answers (0)
Categories
Find more on System Identification Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!