3-D matrix transpose
古いコメントを表示
Hello
I have a 3-D matrix and I want to take the transpose of each individual vector. This is what I want to do:
transpose(A(:,:,1) transpose(A(:,:,2) ... up to (:,:,25)
Would anybody be able to help with this?
採用された回答
その他の回答 (1 件)
ROYGBIV
2021 年 10 月 26 日
B=pagetranspose(A)
This is an easy way of doing it. check the Matlab documentation for a better explanation. MathWorks pagetranspose
カテゴリ
ヘルプ センター および File Exchange で Matrix Operations and Transformations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!