MATLAB: From cell array to matrix

cell araymatrix

Hello: I have a numeric cell array and would like to conver this to a matrix. Please let me know how to do this.
Cheers,

Best Answer

m = cell2mat(values1);