reshape function with index 1
1 回表示 (過去 30 日間)
古いコメントを表示
Hey
Suppose I have an array, let's say
A=[1 0 ; 0 1];
And I want to increase it's size, that is, to make it a 2x2x1 array:
B=reshape(A,[2 2 1])
However, the reshape dunction is fixing my size at 2x2.
Do you guys know how to make it work? thanks
0 件のコメント
採用された回答
John D'Errico
2020 年 12 月 13 日
編集済み: John D'Errico
2020 年 12 月 13 日
Reshape worked perfectly.
In fact, you never had to do any reshape at all. Why is that?
Because ALL arrays in MATLAB are assumed to have infinitely many trailing singleton dimensions. So a 2x2 array actually has dimension 2x2x1x1x1x1x1x1...
All that is reported for 2-d arrays are the first two dimensions. So your 2x2x1 array really is the size you wanted.
A = eye(2);
A(2,2,1)
So in fact, MATLAB does recognize that A can be indexed already using the third dimension, even when it reports A as being 2x2.
size(A)
size(reshape(A,[2 2 1]))
If we force A to have a non-singleton third dimension, this of course works.
size(reshape(A,[1 2 2]))
As you see, now MATLAB knows the result does have 3 dimensions. It always did know that though.
A = eye(2);
A(1,2,1,1,1,1,1,1,1,1)
2 件のコメント
John D'Errico
2020 年 12 月 13 日
編集済み: John D'Errico
2020 年 12 月 13 日
I should have added, this goes back to the early versions of MATLAB, when arrays were never more than 2-dimensions. Then higher dimensional arrays were added as a capability.
I also see you mentioned something about increasing the size of an array, essentially adding planes to an array.
So we can simply add a new plane to an array. Here, that plane will be entirely zero.
A = eye(2);
A(2,2,2) = 0
A(:,:,1) =
1 0
0 1
A(:,:,2) =
0 0
0 0
Or we can replicate the array into the third dimension.
A = magic(2);
repmat(A,[1,1,2])
ans(:,:,1) =
1 3
4 2
ans(:,:,2) =
1 3
4 2
Or we can concatenate two arrays, as planes.
A = eye(2);
B = magic(2);
C = cat(3,A,B)
C(:,:,1) =
1 0
0 1
C(:,:,2) =
1 3
4 2
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!