]> git.donarmstrong.com Git - mothur.git/blob - spline.h
changes while testing
[mothur.git] / spline.h
1 #ifndef SPLINE
2 #define SPLINE
3
4
5 /*
6  *  spline.h
7  *  Mothur
8  *
9  *  Created by westcott on 12/6/11.
10  *  Copyright 2011 Schloss Lab. All rights reserved.
11  *
12  */
13
14 //This class was translated into c++ using c and fortran code from www.koders.com as a reference.
15
16 #include "mothurout.h"
17
18 class Spline {
19         
20         public:
21                 Spline() { m = MothurOut::getInstance(); }
22                 ~Spline() {}
23                 
24                 int sbart(double *penalt, double *dofoff,
25                            double *xs, double *ys, double *ws, double *ssw,
26                            int *n, double *knot, int *nk, double *coef,
27                            double *sz, double *lev, double *crit, int *icrit,
28                            double *spar, int *ispar, int *iter, double *lspar,
29                            double *uspar, double *tol, double *eps, int *isetup,
30                            int *ld4, int *ldnk, int *ier);
31                 
32         private:
33                 MothurOut* m;
34 };
35
36 #endif
37
38