7 lines
180 B
C
7 lines
180 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_
|