Command "matlab.io.saveVariablesToScript" max memory/elements
4 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
回答(1 个)
Thomas McKay-Smith
2022-12-15
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 个评论
Thomas McKay-Smith
2022-12-15
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)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!