Matlab workspace
20 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How can I know, the total variables size stored in matlab? I mean, total memory taken by workspace?
0 Kommentare
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]);
2 Kommentare
Walter Roberson
am 10 Nov. 2011
The answer can be difficult to define one takes in to account the fact that MATLAB shares arrays.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Whos finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!