aubio_wavetable_get_amp method

double aubio_wavetable_get_amp(
  1. Pointer<_aubio_wavetable_t> o
)

get wavetable amplitude

\param o wavetable, created by new_aubio_wavetable()

\return current amplitude

Implementation

double aubio_wavetable_get_amp(
  ffi.Pointer<_aubio_wavetable_t> o,
) {
  return _aubio_wavetable_get_amp(
    o,
  );
}