1 /* Set of statistical functions written by Peter Lauren.  Started 17-Jul-2020 */
2 
3 float getMean(float *ts, int npts);
4 float getSigma(float *ts, int npts, float mean);
5 float getSkewness(float *ts, int npts);
6 float getKurtosis(float *ts, int npts);
7