How can I stack multiple Matrices in 1 2D matrix?
4 ビュー (過去 30 日間)
古いコメントを表示
I have a 3D Matrix (96,35,43)
I want to change it to (3360,43) so that each 35x43 matrix is below the previous
How can I do this?
0 件のコメント
回答 (1 件)
the cyclist
2016 年 1 月 12 日
% Your original data:
x = rand(96,35,43);
% Reshaped as you want
xr = reshape(permute(x,[1 3 2]),3360,43);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!