필터 지우기
필터 지우기

"Bytes" is 0 in Variable Editor

조회 수: 2 (최근 30일)
Shunchao Wu
Shunchao Wu 2011년 11월 15일
a.data=rand(100,1);
b=dlnode(rand(100,1));
Then you'll find in Variable Editor the "Bytes" of a.data or b.data is 0!
Why?
Verified on 2008a and 2010b.
While it's correct in Workspace Window.
Thanks a lot.

채택된 답변

Fangjun Jiang
Fangjun Jiang 2011년 11월 15일
If you do a=struct() or b=[], you will see that the variable a and b have been declared but not assigned value. Thus, a and b have not taken any memory bytes to store the value. Once you assign a value, the number of bytes will change depending on the size of the data stored.
  댓글 수: 5
Fangjun Jiang
Fangjun Jiang 2011년 11월 16일
Thank you! I've verified in R2010b that it is showing 0 bytes.
I think this might be a bug. Please report to TMW. Good finding!
Shunchao Wu
Shunchao Wu 2011년 11월 16일
OK, I'll report this bug.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2011년 11월 15일
In R2008b, I did
a.data=rand(100,1);
openvar a
but I could not see any "Bytes" field in the Variable Editor.
Same when I used the Workspace Browser to examine a.
  댓글 수: 1
Shunchao Wu
Shunchao Wu 2011년 11월 16일
On Microsoft Windows systems, you can right-click any column header to show the "Bytes" column.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by