aubio_mfcc_set_scale method
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,
);
}