comparison src/ltpda_smoother/ltpda_smoother.h @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 /*
2 Header for mfnest.c
3
4 $Id: ltpda_smoother.h,v 1.3 2008/09/25 08:16:16 hewitson Exp $
5 */
6
7 /* from mnfest.c */
8 void print_usage(char *version);
9 int smooth(double *nxx, double *xx, int nx, int bw, double ol, char *method);
10 double median(double *x, int nx);
11 double mean(double *x, int nx);
12 double smax(double *x, int nx);
13 double smin(double *x, int nx);
14
15
16 /* from quick.c */
17 int quickSort(double *arr, int elements);
18