TwiceAsNice
2019-02-18
|
Functions | |
double | dspau_minmidmax (double *in, int len, double *min, double *max) |
Gets minimum, mid, and maximum values of the input stream. More... | |
double | dspau_mean (double *in, int len) |
A mean calculator. More... | |
double dspau_mean | ( | double * | in, |
int | len | ||
) |
A mean calculator.
in | the input stream. (input) |
len | the length of the input stream. |
double dspau_minmidmax | ( | double * | in, |
int | len, | ||
double * | min, | ||
double * | max | ||
) |
Gets minimum, mid, and maximum values of the input stream.
in | the input stream. (input) |
len | the length of the input stream. |
min | the minimum value (output). |
max | the maximum value (output). |