aubio_pitchyinfft_set_tolerance method

int aubio_pitchyinfft_set_tolerance(
  1. Pointer<aubio_pitchyinfft_t> o,
  2. double tol
)

set tolerance parameter for YIN algorithm

\param o YIN pitch detection object \param tol tolerance parameter for minima selection default 0.15

Implementation

int aubio_pitchyinfft_set_tolerance(
  ffi.Pointer<aubio_pitchyinfft_t> o,
  double tol,
) {
  return _aubio_pitchyinfft_set_tolerance(
    o,
    tol,
  );
}