Covert cell to matrix for MFCC features vector
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hamzah amee
il 10 Apr 2014
Modificato: ragesh r menon
il 11 Apr 2014
Hi,
I have a result of MFCC features vectors stores in an cell array of 77x1cell as below:
(<20x5820 double>)
(<20x4659 double>)
(<20x1896 double>) and so on...77 times.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/160600/image.jpeg)
I want to compute the euclidean distance between each of 77x1 cell. How should I do this?
Thanks a lot
0 Commenti
Risposta accettata
ragesh r menon
il 10 Apr 2014
Use cell2mat
%"a" is a cell array
b = cell2mat(a);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!