reshape 3d to 2d array
3 ビュー (過去 30 日間)
古いコメントを表示
I have a 1 by 20 by 3 array and want to reshape it to 3 by 20 matrix
0 件のコメント
採用された回答
その他の回答 (1 件)
Bruno Luong
2019 年 9 月 4 日
編集済み: Bruno Luong
2019 年 9 月 4 日
Not RESHAPE, but PERMUTE (there is movement in internal storage, and it more expansive than RESHAPE)
A = permute(A, [3 2 1]);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Graphics Object Programming についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!