A small problem about the Cell Array.
Afficher commentaires plus anciens
I am a newbie for the cell array in Matlab programming.I need a cell array, for example C, with the five elements,a,b,..,e. Each element is a matrix, and may be in different size.
How to program to implement this issue?
Réponse acceptée
Plus de réponses (1)
Azzi Abdelmalek
le 25 Août 2013
a=2;
b=[2 5];
c=[2 4;4 5];
A={a,b,c}
1 commentaire
Donghui Sun
le 26 Août 2013
Catégories
En savoir plus sur Data Types 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!