matrix to cell conversion
Afficher commentaires plus anciens
how to convert 768*8 matrix into 768 number of 8*1 cells using matlab
1 commentaire
Fangjun Jiang
le 13 Août 2020
couldn't figure it out using the examples in "doc mat2cell"?
Réponses (2)
David Hill
le 13 Août 2020
newCell=mat2cell(yourMatrix,ones(size(yourMatrix,1),1));
madhan ravi
le 13 Août 2020
num2cell(matrix, 1).'
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!