Revision afb150384c671c72502d79b81811b1923ee6084e authored by Edzer J. Pebesma on 12 December 2008, 17:59:42 UTC, committed by cran-robot on 12 December 2008, 17:59:42 UTC
1 parent eb020f8
Raw File
stat.h
/* stat.c */
double sample_mean(double *list, int n);
double sample_var(double *list, double mean, int n);
double sample_std(double *list, double mean, int n);
double est_quant(double *list, double p, int n);
void calc_r(double *a, double *b, int n, double *r);
int CDECL d_cmp(const double *a, const double *b);
int stats(char *name, int silent, double q);
back to top