How to convert the following 4D matrix to 2D matrix?
5 ビュー (過去 30 日間)
古いコメントを表示
mohammed mahmoud
2017 年 10 月 8 日
コメント済み: Walter Roberson
2018 年 6 月 18 日
I want to convert matrix (1,100,100,16384) to 2d matrix
1 件のコメント
採用された回答
Walter Roberson
2017 年 10 月 8 日
reshape(YourMatrix, 100*100, [])
if you want 100*100 rows and 16384 columns as your output
2 件のコメント
Walter Roberson
2018 年 6 月 18 日
What size of matrix are you starting with, and what size do you want to end up with, and what order do you want the elements to end up in?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Numeric Types についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!