aubio_mfcc_set_mel_coeffs_htk method

int aubio_mfcc_set_mel_coeffs_htk(
  1. Pointer<aubio_mfcc_t> mf,
  2. double fmin,
  3. double fmax
)

Mel filterbank initialization

\param mf mfcc object \param fmin start frequency, in Hz \param fmax end frequency, in Hz

The bank of filters will be initalized to to cover linearly spaced bands in the Htk mel scale, from fmin to fmax.

See also

aubio_filterbank_set_mel_coeffs_htk()

Implementation

int aubio_mfcc_set_mel_coeffs_htk(
  ffi.Pointer<aubio_mfcc_t> mf,
  double fmin,
  double fmax,
) {
  return _aubio_mfcc_set_mel_coeffs_htk(
    mf,
    fmin,
    fmax,
  );
}