Matlab workspace
Ältere Kommentare anzeigen
How can I know, the total variables size stored in matlab? I mean, total memory taken by workspace?
Antworten (2)
Fangjun Jiang
am 10 Nov. 2011
feature('memstats')
If you just want to count the bytes used by the memory:
a=whos;
sum([a.bytes]);
Walter Roberson
am 10 Nov. 2011
0 Stimmen
The answer can be difficult to define one takes in to account the fact that MATLAB shares arrays.
Kategorien
Mehr zu Workspace Variables and MAT Files finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!