How to convert the following 4D matrix to 2D matrix?
5 次查看(过去 30 天)
显示 更早的评论
I want to convert matrix (1,100,100,16384) to 2d matrix
采纳的回答
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!