MATLAB: Change data from cell array to a matrix

cell arrays

[201×1300 double]
[201×1300 double]
[201×1300 double]
[201×1300 double]
[201×1300 double]
[201×1300 double]
[201×1300 double]
[201×1300 double]
[201×1300 double]
[201×1300 double]
How do i take the value stored in the 1st row of 201 and form a matrix of 10×1300 and so on until 201 or to put it as 201cells of 10×1300 instead of 10cells of 201×1300.

Best Answer

To convert a cell array to a matrix, you can use cell2mat :
help cell2mat
cell2mat Convert the contents of a cell array into a single matrix.