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

9 lines
216 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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