aubio_mfcc_set_mel_coeffs method

int aubio_mfcc_set_mel_coeffs(
  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 filterbank will be initialized with bands linearly spaced in the mel scale, from fmin to fmax.

See also

aubio_filterbank_set_mel_coeffs()

Implementation

int aubio_mfcc_set_mel_coeffs(
  ffi.Pointer<_aubio_mfcc_t> mf,
  double fmin,
  double fmax,
) {
  return _aubio_mfcc_set_mel_coeffs(
    mf,
    fmin,
    fmax,
  );
}