new_aubio_wavetable method
create new wavetable object
\param samplerate the sampling rate of the new wavetable \param hop_size the block size of the new wavetable
\return the newly created aubio_wavetable_t
Implementation
ffi.Pointer<aubio_wavetable_t> new_aubio_wavetable(
int samplerate,
int hop_size,
) {
return _new_aubio_wavetable(
samplerate,
hop_size,
);
}