Info
This question is closed. Reopen it to edit or answer.
I have dataset of 14 mri image given in cell of 14*1. now in each cell there is 1*1 structure. Inside structure threre are 5 fields with different values.I want to convert entire 14 cell into matrices structure
1 view (last 30 days)
Show older comments
Command needed to decode it
0 Comments
Answers (1)
Image Analyst
on 12 Nov 2017
Try this:
for k = 1 : length(ca)
this_structure = ca{k};
theImage = this_structure.fieldName; % Replace fieldName with the actual field name that contains the image.
% Now do something with theImage.
end
1 Comment
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!