Matlab workspace
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How can I know, the total variables size stored in matlab? I mean, total memory taken by workspace?
0 comentarios
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]);
2 comentarios
Walter Roberson
el 10 de Nov. de 2011
The answer can be difficult to define one takes in to account the fact that MATLAB shares arrays.
0 comentarios
Ver también
Categorías
Más información sobre Whos en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!