8 lines
216 B
C
8 lines
216 B
C
#ifndef _POLIFITGSL_H
|
|
#define _POLIFITGSL_H
|
|
#include <gsl/gsl_multifit.h>
|
|
#include <stdbool.h>
|
|
#include <math.h>
|
|
bool polynomialfit(int obs, int degree,
|
|
double *dx, double *dy, double *store); /* n, p */
|
|
#endif
|