Matlab workspace
22 ビュー (過去 30 日間)
古いコメントを表示
How can I know, the total variables size stored in matlab? I mean, total memory taken by workspace?
0 件のコメント
回答 (2 件)
Fangjun Jiang
2011 年 11 月 10 日
feature('memstats')
If you just want to count the bytes used by the memory:
a=whos;
sum([a.bytes]);
Walter Roberson
2011 年 11 月 10 日
The answer can be difficult to define one takes in to account the fact that MATLAB shares arrays.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Whos についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!