Command "matlab.io​.saveVaria​blesToScri​pt" max memory/elements

6 views (last 30 days)
Hi all, I am using the matlab command matlab.io.saveVariablesToScript In order to save my output in .m file instead of .mat (in order to save space memory in my pc).
But in some case the output is create as a .mat file plus a script that run the .mat file because :
"too many elements at str.Output.error_flag.signals.values"
But I am not able to find the thresholds over that is no longer possible save as .m file
Which is this thesholds ? What it depend on ? The dimension of data, the number of elements, both of them ?
Many thanks for your time and consideration Kind regards

Answers (1)

Thomas McKay-Smith
Thomas McKay-Smith on 15 Dec 2022
By trial and error I have found variables are saved to a '.mat' file instead of a script when the the number of elements is >1000. For a structure this only needs to be the case for one field and the whole structure will be saved to the '.mat' file.
  1 Comment
Thomas McKay-Smith
Thomas McKay-Smith on 15 Dec 2022
And I have just discovered you can change the limit up to a maximuum of 10,000.
e.g.
matlab.io.saveVariablesToScript('foo_script.m',foo,'MaximumArraySize',1e4)

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!