aubio_tempo_get_confidence method

double aubio_tempo_get_confidence(
  1. Pointer<_aubio_tempo_t> o
)

get current tempo confidence

\param o beat tracking object

\return confidence with which the tempo has been observed, the higher the more confidence, 0 if no consistent value is found.

Implementation

double aubio_tempo_get_confidence(
  ffi.Pointer<_aubio_tempo_t> o,
) {
  return _aubio_tempo_get_confidence(
    o,
  );
}