using mat2cell
이전 댓글 표시
M is matrix of 2010x1300
how do i form 201 cells of 10x1300 using mat2cell?
채택된 답변
추가 답변 (1개)
M
2017년 10월 31일
Maybe not the easiest solution, but try something like :
j=1;
for i=1:10:201
A{j}=M(i:i+9,:);
j=j+1;
end
카테고리
도움말 센터 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!