MATLAB: How to extract the structure array from a cell array

matlab function

I have a 2-cell array, each cell is a structure array. Could you please show me how to extract the structure array from each cell?

Best Answer

Suppose you hace cell array
data={ struc array1 struc array2 struc array3.....}
If you want to extract struc array2 then..
result=data{2}
so on...