2000-03-22 22:01:33 +00:00
|
|
|
#ifndef _1D_INTERPOLATION_H_
|
|
|
|
#define _1D_INTERPOLATION_H_
|
|
|
|
|
2000-09-06 19:52:37 +00:00
|
|
|
double uiuc_1Dinterpolation( double xData[100],
|
|
|
|
double yData[100],
|
|
|
|
int xmax,
|
|
|
|
double x );
|
2002-11-08 17:03:49 +00:00
|
|
|
int uiuc_1Dinterpolation( double xData[],
|
|
|
|
int yData[],
|
|
|
|
int xmax,
|
|
|
|
double x );
|
2000-03-22 22:01:33 +00:00
|
|
|
|
|
|
|
#endif // _1D_INTERPOLATION_H_
|