1
0
Fork 0
flightgear/src/FDM/UIUCModel/uiuc_1Dinterpolation.h
curt 4a2c47d9d7 Robert Deters:
Latest revisions of the UIUC code.
2002-11-08 17:03:49 +00:00

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_