I want to use mfcc feature vectors for applying knowledge based approach. But, the .mfc files are in binary format. Is there any way to convert to matrix from
Row corresponds to frame number where as column corresponds to feature vectors. How can
I do this conversation in matlab. Please help me. Thanks in advance.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I want to use mfcc feature vectors for applying knowledge based approach. But, the .mfc files are in binary format. Is there any way to convert to matrix from
Row corresponds to frame number where as column corresponds to feature vectors. How can
I do this conversation in matlab. Please help me. Thanks in advance.
It is perfectly possible to read binary floats from file with matlab:
http://de.mathworks.com/help/matlab/ref/fread.html
Something like
Thank you