Legofit
infers population history from nucleotide site patterns.
hessian.h
1
#ifndef ARR_HESSIAN_H
2
#define ARR_HESSIAN_H
3
#include <gsl/gsl_matrix.h>
4
5
typedef
struct
Hessian
Hessian
;
6
7
struct
Hessian
{
8
int
npar;
// number of parameters
9
double
lnL;
// log likelihood of estimate
10
char
**parname;
// array of pointers to parameter names
11
gsl_matrix *hessian;
12
};
13
14
Hessian
hessian(
const
char
*fname);
15
16
#endif
Hessian
Definition:
hessian.h:7
Generated on Fri Mar 17 2023 17:45:47 for Legofit by
1.9.4