aubio_wavetable_set_amp method
set wavetable amplitude
\param o wavetable, created by new_aubio_wavetable() \param amp new amplitude value for the wavetable
\return 0 if successful, 1 otherwise
Implementation
int aubio_wavetable_set_amp(
ffi.Pointer<aubio_wavetable_t> o,
double amp,
) {
return _aubio_wavetable_set_amp(
o,
amp,
);
}