new_aubio_fft method

Pointer<aubio_fft_t> new_aubio_fft(
  1. int size
)

create new FFT computation object

\param size length of the FFT

Implementation

ffi.Pointer<aubio_fft_t> new_aubio_fft(
  int size,
) {
  return _new_aubio_fft(
    size,
  );
}