Accessing cells of a cell
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
med-sweng
am 27 Sep. 2014
Kommentiert: Image Analyst
am 27 Sep. 2014
I have the following cell:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/145537/image.png)
Now, when I open it, you can see the following:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/145538/image.png)
My question is, how can we retrieve all the data of such cell?
Thanks.
Akzeptierte Antwort
Geoff Hayes
am 27 Sep. 2014
If cellArray is your cell array as shown above with one element, then to access that element just do
data = cellArray{1};
Here we assume that the cell array has been initialized as something similar to
cellArray{1} = 0.5*ones(128,128);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Structures finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!