extract submatrix from a large matrix using loop
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
その他の回答 (2 件)
Andrei Bobrov
2016 年 7 月 18 日
A=rand(1140,330);
out = permute(reshape(A',size(A,2),60,[]),[2,1,3]);
0 件のコメント
Guillaume
2016 年 7 月 18 日
m = rand(1140, 330); %demo matrix
splitm = mat2cell(m, ones(1, 60) * 19, 330)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!