1
0
Fork 0
flightgear/src/FDM/UIUCModel/uiuc_1Dinterpolation.h

14 lines
365 B
C
Raw Normal View History

#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 );
int uiuc_1Dinterpolation( double xData[],
int yData[],
int xmax,
double x );
#endif // _1D_INTERPOLATION_H_