Reshape array 3 variables into 2?

Hi,
I have an array of A=1x100x50.
How can I reshape it in B=100x50?
I have tried with
B=reshape(A,[100, 50]);
But I get the error message
Error using reshape To RESHAPE the number of elements must not change.
Thanks in advance for your reply.

 採用された回答

Andrei Bobrov
Andrei Bobrov 2018 年 1 月 30 日
編集済み: Andrei Bobrov 2018 年 1 月 30 日

0 投票

B = squeeze(A)
or
B = permute(A,[2,3,1]);
or
B = reshape(A,size(A,2),[]);

その他の回答 (1 件)

Abhishek Ballaney
Abhishek Ballaney 2018 年 1 月 30 日

0 投票

https://in.mathworks.com/help/matlab/ref/reshape.html

カテゴリ

ヘルプ センター および File ExchangeMultidimensional Arrays についてさらに検索

タグ

質問済み:

2018 年 1 月 30 日

編集済み:

2018 年 1 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by