Accessing cells of a cell
2 次查看(过去 30 天)
显示 更早的评论
I have the following cell:
Now, when I open it, you can see the following:
My question is, how can we retrieve all the data of such cell?
Thanks.
采纳的回答
Geoff Hayes
2014-9-27
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!