Is there a faster way to load large structures?
Show older comments
Hi! I have saved a data structure that contains 1104 radar images with the focusing parameters, date and time for each image. When I start the code to work with the structure I use
load('Image_Struct.mat');
but it takes a long time to load the data structure. Is there a faster way that I can do that?
Thanks!
2 Comments
KSSV
on 27 Jul 2017
What information does your .mat file have?
per isakson
on 27 Jul 2017
MAT-file version matters. v7.3 (required for >2GB) is known to be slow.
Answers (1)
ES
on 27 Jul 2017
Edited: per isakson
on 28 Jul 2017
0 votes
Try partial load using matfile.. https://in.mathworks.com/help/matlab/import_export/load-parts-of-variables-from-mat-files.html
Categories
Find more on Vision HDL 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!