I have a big .mat file that I want to process, but it is too big to fit in a single load. I thought to load it in parts, each time to access just the important parameters. So I have practically two questions:
Thanks!
you can see the list of variables using:
vars = whos('-file','name.mat');
and then just load the variable you want, say the first one on the list, by:
load('name.mat', vars(1).name)
2.1m questions
2.1m answers
60 comments
57.0k users