Difference in matrix sizes

조회 수: 2 (최근 30일)
Dario
Dario 2014년 7월 29일
편집: Andrew Reibold 2014년 7월 29일
Why is the size in bytes for the two matrices different?
x = 1:2:10
y = [1:2:10]
whos x
whos y
The output shows that the two arrays have different sizes (24 bytes and 40 bytes).
x =
1 3 5 7 9
y =
1 3 5 7 9
Variables in the current scope:
Attr Name Size Bytes Class
==== ==== ==== ===== =====
x 1x5 24 double
Total is 5 elements using 24 bytes
Variables in the current scope:
Attr Name Size Bytes Class
==== ==== ==== ===== =====
y 1x5 40 double
Total is 5 elements using 40 bytes

답변 (1개)

Andrew Reibold
Andrew Reibold 2014년 7월 29일
편집: Andrew Reibold 2014년 7월 29일
Clear your variables and try again and see if it still happens. Doesn't happen for me.
x = 1:2:10

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by