aubio_level_lin method
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,
);
}