MATLAB: How to convert cell to double array

cell arrayscell to doubleconvertdouble

My data is with size of 2050×1 and its class label as 'cell', how do convert it into double so that i can plot the graph? thanks for the help in advance

Best Answer

Gil - is each element of your cell array a numeric scalar or numeric array? See cell2mat which provides some examples on how you might do this conversion.
Related Question