MATLAB: How can access a table which contain cells

celltable

I have a table that contain cells an it is like this: [1×38 double] [1×38 double] [1×38 double]… I can access each row at time but I need all the rows to be stored in a matrix.

Best Answer

The cell2mat function could be what you want.
Related Question