MATLAB: Covert cell to matrix for MFCC features vector

cell arraysmatrixsignal processing

Hi,
I have a result of MFCC features vectors stores in an cell array of 77x1cell as below:
(<20×5820 double>)
(<20×4659 double>)
(<20×1896 double>) and so on…77 times.
I want to compute the euclidean distance between each of 77×1 cell. How should I do this?
Thanks a lot

Best Answer

Use cell2mat
%"a" is a cell array
b = cell2mat(a);