MATLAB: Hi i have 1×10 cell,each cell contains 1×2 cell,therefore totally i have 20 cells,i need all these 20 cells to be displayed in single array as 1×20 double ,how to code this in matlab sir,help plz

image processing

i need to do this in loop because i have 20 1x10cells,thanks in advance

Best Answer

You do not need a loop:
X = {[1,2],[3,4],[4,5]}
[X{:}]
And if those nested arrays really are cell arrays, then simply do this:
Y = {{1,2},{3,4},{4,5}};
cell2mat([Y{:}])