20 lines
301 B
C
20 lines
301 B
C
#include <gsl/gsl_matrix.h>
|
|
|
|
#include "kernels.h"
|
|
#include "solve.h"
|
|
|
|
#ifndef GP_H
|
|
#define GP_H
|
|
|
|
typedef struct {
|
|
gsl_matrix *meanf;
|
|
gsl_matrix *covf;
|
|
} gp_model;
|
|
|
|
gp_model
|
|
gpfit
|
|
( gsl_matrix *x, gsl_matrix *y, gsl_matrix *xs, kernel_info info, double noise,
|
|
invert_t inv_t );
|
|
|
|
#endif // !GP_H
|