new_aubio_window method

Pointer<fvec_t> new_aubio_window(
  1. Pointer<char_t> window_type,
  2. int size
)

create window

\param window_type type of the window to create \param size length of the window to create (see fvec_set_window())

Implementation

ffi.Pointer<fvec_t> new_aubio_window(
  ffi.Pointer<char_t> window_type,
  int size,
) {
  return _new_aubio_window(
    window_type,
    size,
  );
}