Matlab workspace
古いコメントを表示
How can I know, the total variables size stored in matlab? I mean, total memory taken by workspace?
回答 (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 日
0 投票
The answer can be difficult to define one takes in to account the fact that MATLAB shares arrays.
カテゴリ
ヘルプ センター および File Exchange で Workspace Variables and MAT Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!