Matlab workspace
20 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How can I know, the total variables size stored in matlab? I mean, total memory taken by workspace?
0 commentaires
Réponses (2)
Fangjun Jiang
le 10 Nov 2011
feature('memstats')
If you just want to count the bytes used by the memory:
a=whos;
sum([a.bytes]);
2 commentaires
Walter Roberson
le 10 Nov 2011
The answer can be difficult to define one takes in to account the fact that MATLAB shares arrays.
0 commentaires
Voir également
Catégories
En savoir plus sur Whos dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!