new_aubio_dct method

Pointer<aubio_dct_t> new_aubio_dct(
  1. int size
)

create new DCT computation object

\param size length of the DCT

Implementation

ffi.Pointer<aubio_dct_t> new_aubio_dct(
  int size,
) {
  return _new_aubio_dct(
    size,
  );
}