OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
amoeba.h
Go to the documentation of this file.
1 typedef struct {
2  short int nfunc;
3  short int npnts;
4  double merit;
5  double *y;
6  double *wgt;
7  double *fitfunc;
8  double *yfit;
9  int niter;
10  void *meta;
11 } FITSTRUCT;
12 
13 short amoeba(double *, FITSTRUCT *,
14  double (*) (FITSTRUCT *, double []), float);
int niter
Definition: amoeba.h:9
double merit
Definition: amoeba.h:4
double * wgt
Definition: amoeba.h:6
short amoeba(double *, FITSTRUCT *, double(*)(FITSTRUCT *, double[]), float)
Definition: amoeba.c:14
double * y
Definition: amoeba.h:5
short int nfunc
Definition: amoeba.h:2
double * yfit
Definition: amoeba.h:8
void * meta
Definition: amoeba.h:10
short int npnts
Definition: amoeba.h:3
double * fitfunc
Definition: amoeba.h:7