MATLAB: Convert cell array to two row vector

cell2matconcatenate

Hi folks,
I have the following cell array:
hvix =
[2x1 double]
[2x8 double]
[2x15 double]
[2x1 double]
I want to concatenate them into a 2 x 25 matrix. Is this possible?
Thanks

Best Answer

cell2mat(hvix(:)')