MATLAB: Convert 1x1x6381 double to 6381×1 double

cell arrays

I have a column of data in the form 1x1x6381 as seen in image but I want it in the form of 6381×1. So as 76.7309 76.5815 76.5777 etc.
Thanks

Best Answer

If A is your array, then this will convert it into a column vector, regardless of its original size:
A(:)