To read a cell array containing multiple cell array.
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi...
I would like to know the answer for my query. I have a cell array containing many cell array but I would like to read only one array at a time and this has to be in loop to read the specific cell array which I would like to read.
Columns 1 through 6 {14X61 cell} {5X61 cell} {2x61 cell} [] [] []
Regards, M. Sarfudeen
0 Commenti
Risposte (1)
Michael Haderlein
il 23 Set 2014
Modificato: Michael Haderlein
il 23 Set 2014
Do you mean something like
firstcell=myarray{1};
Or, in a loop,
for cnt=1:length(myarray)
thiscell=myarray{cnt};
display(size(thiscell));
end
2 Commenti
Michael Haderlein
il 24 Set 2014
How do you decide which cell you want to read? Always the last nonempty cell?
Vedere anche
Categorie
Scopri di più su Matrices and Arrays in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!