RosettaCodeData/Task/Polynomial-regression/C/polynomial-regression-1.c

9 lines
216 B
C
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
#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