aubio_scale_set_limits method
modify scale parameters after object creation
\param s scale object as returned by new_aubio_scale \param olow lower value of output function \param ohig higher value of output function \param ilow lower value of input function \param ihig higher value of output function
Implementation
int aubio_scale_set_limits(
ffi.Pointer<aubio_scale_t> s,
double ilow,
double ihig,
double olow,
double ohig,
) {
return _aubio_scale_set_limits(
s,
ilow,
ihig,
olow,
ohig,
);
}