aubio_level_lin method

double aubio_level_lin(
  1. Pointer<fvec_t> v
)

compute sound level on a linear scale

This gives the average of the square amplitudes.

\param v vector to compute level from

\return level of v

Implementation

double aubio_level_lin(
  ffi.Pointer<fvec_t> v,
) {
  return _aubio_level_lin(
    v,
  );
}