4a2c47d9d7
Latest revisions of the UIUC code.
13 lines
365 B
C
13 lines
365 B
C
#ifndef _1D_INTERPOLATION_H_
|
|
#define _1D_INTERPOLATION_H_
|
|
|
|
double uiuc_1Dinterpolation( double xData[100],
|
|
double yData[100],
|
|
int xmax,
|
|
double x );
|
|
int uiuc_1Dinterpolation( double xData[],
|
|
int yData[],
|
|
int xmax,
|
|
double x );
|
|
|
|
#endif // _1D_INTERPOLATION_H_
|