How can I reshape a 3D matrix without changing the order of the data

3 ビュー (過去 30 日間)
Shenae
Shenae 2013 年 7 月 2 日
This is probably really simple, but I have a 3D matrix A, 10x30x5 where 5 is the number of replicates in my study and the 10x30 is the actual data. I want the number of replicates to be in the first dimension rather than the third so that A' is a 5x10x30. A(2,2,1) should be equal to A'(1,2,2) . But I have no idea how to do this.

採用された回答

Jonathan Sullivan
Jonathan Sullivan 2013 年 7 月 2 日
Use the function permute. It switches the order of the dimensions.
You would want something like:
A = permute(A,[3 1 2]);

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by