how to convert a matrix to a cell array
265 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
John
le 30 Juil 2012
Commenté : william katzianer
le 21 Juil 2020
Hi there,
I have a 2x10 matrix. Would anybody know how I could convert it into a 1x10 cell array - so that each cell contains a 2x1 matrix?
I'm new to matlab and would appreciate any help.
Kind Regards
John
0 commentaires
Réponse acceptée
Andrei Bobrov
le 30 Juil 2012
Modifié(e) : Andrei Bobrov
le 30 Juil 2012
1 commentaire
Raphael
le 17 Mai 2013
Dear,
Do you know how to save the cell array created by the function?
Best regards,
Raphael
Plus de réponses (1)
venkat vasu
le 30 Juil 2012
Modifié(e) : Walter Roberson
le 30 Juil 2012
X= reshape(1:20,2,10)'
C = mat2cell(X, [1,10],[2,1]);
celldisp(C);
Voir également
Catégories
En savoir plus sur Data Type Conversion dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!