Reshape 3d into 2d matrix (in this way)

19 ビュー (過去 30 日間)
Jakov Simjanoski
Jakov Simjanoski 2018 年 7 月 11 日
回答済み: James Tursa 2018 年 7 月 11 日
I want to convert a 3D matrix A(:,:,1)= [1,2;3,4] A(:,:,2)= [5,6;7,8] A(:,:,3)= [9,10;11,12] into a 2D matrix A=[1,2,5,6,9,10;3,4,7,8,11,12]. Any help is appreciated, thank you in advance.
P.S. I will be working with much bigger matrices, in particular 450x450x450.

採用された回答

James Tursa
James Tursa 2018 年 7 月 11 日
result = reshape(A,2,[]);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by