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!