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!