aubio_mfcc_set_mel_coeffs_slaney method

int aubio_mfcc_set_mel_coeffs_slaney(
  1. Pointer<aubio_mfcc_t> mf
)

Mel filterbank initialization (Auditory Toolbox's parameters)

\param mf mfcc object

The filter coefficients are built to match exactly Malcolm Slaney's Auditory Toolbox implementation. The number of filters should be 40.

This is the default filterbank when mf was created with n_filters = 40.

See also

aubio_filterbank_set_mel_coeffs_slaney()

Implementation

int aubio_mfcc_set_mel_coeffs_slaney(
  ffi.Pointer<aubio_mfcc_t> mf,
) {
  return _aubio_mfcc_set_mel_coeffs_slaney(
    mf,
  );
}