mfcc.rst 614 B

1234567891011121314151617181920212223242526
  1. MFCC
  2. ====
  3. .. highlight:: python
  4. .. autofunction:: cmsisdsp.mfcc.frequencyToMelSpace
  5. .. autofunction:: cmsisdsp.mfcc.melSpaceToFrequency
  6. MEL filters are represented as 3 arrays to encode a sparse matrix.
  7. .. autofunction:: cmsisdsp.mfcc.melFilterMatrix
  8. The API is returning a tuple::
  9. (filterLength,filterPos,PackedCoefficients)
  10. The first argument is the list of MEL filter lengths.
  11. The second argument is the position of the first coefficient of the filter in the list of coefficients,
  12. The last argument is the concatenated list of all filter coefficients.
  13. .. autofunction:: cmsisdsp.mfcc.dctMatrix