9 lines
270 B
C
9 lines
270 B
C
#ifndef _1D_INTERPOLATION_H_
|
|
#define _1D_INTERPOLATION_H_
|
|
|
|
double uiuc_1Dinterpolation( double xData[100],
|
|
double yData[100],
|
|
int xmax,
|
|
double x );
|
|
|
|
#endif // _1D_INTERPOLATION_H_
|