aubio_mfcc_set_scale method

int aubio_mfcc_set_scale(
  1. Pointer<_aubio_mfcc_t> mf,
  2. double scale
)

set scaling parameter

\param mf mfcc object, as returned by new_aubio_mfcc() \param scale Scaling value to apply.

Scales the output of the filterbank after taking its logarithm and before computing the DCT. Defaults to 1.

Implementation

int aubio_mfcc_set_scale(
  ffi.Pointer<_aubio_mfcc_t> mf,
  double scale,
) {
  return _aubio_mfcc_set_scale(
    mf,
    scale,
  );
}