using mat2cell
Afficher commentaires plus anciens
M is matrix of 2010x1300
how do i form 201 cells of 10x1300 using mat2cell?
Réponse acceptée
Plus de réponses (1)
M
le 31 Oct 2017
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
Catégories
En savoir plus sur Data Type Conversion dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!