Storing Cell elements in a single matrix
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Aniket Kumar
le 8 Juin 2019
Commenté : Aniket Kumar
le 8 Juin 2019
I have a cell of size (8*11) and each element of this cell is of size (32*32).
Now I have to store all elements of the cell in a single matrix of size
(32*8*11 , 32),
means stacking all the (11*8 = 88) elements of the cell (each of size 32*32) one after other.
Someone please help!
0 commentaires
Réponse acceptée
madhan ravi
le 8 Juin 2019
Modifié(e) : madhan ravi
le 8 Juin 2019
a = cat(3,yourcell{:})
3 commentaires
madhan ravi
le 8 Juin 2019
Modifié(e) : madhan ravi
le 8 Juin 2019
When yourcell is of size 8 x 11 each containing 32 x 32 double , haven’t got an error unless you’re doing something strange.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices 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!