You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
537 B
17 lines
537 B
/*************
|
|
* Header file for interp.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef INTERP_H_INCLUDED
|
|
#define INTERP_H_INCLUDED
|
|
|
|
bool ft_interpolate(double *data, double *ndata, double *oscale, int olen, double *nscale,
|
|
int nlen, int degree);
|
|
bool ft_polyfit(double *xdata, double *ydata, double *result, int degree, double *scratch);
|
|
double ft_peval(double x, double *coeffs, int degree);
|
|
void lincopy(struct dvec *ov, double *newscale, int newlen, struct dvec *oldscale);
|
|
void ft_polyderiv(double *coeffs, int degree);
|
|
|
|
|
|
#endif
|