Matlab workspace
Mostrar comentarios más antiguos
How can I know, the total variables size stored in matlab? I mean, total memory taken by workspace?
Respuestas (2)
Fangjun Jiang
el 10 de Nov. de 2011
feature('memstats')
If you just want to count the bytes used by the memory:
a=whos;
sum([a.bytes]);
Walter Roberson
el 10 de Nov. de 2011
0 votos
The answer can be difficult to define one takes in to account the fact that MATLAB shares arrays.
Categorías
Más información sobre Workspace Variables and MAT Files en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!