]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_1Dinterpolation.h
UIUC FDM - detabbing of all files.
[flightgear.git] / src / FDM / UIUCModel / uiuc_1Dinterpolation.h
1 #ifndef _1D_INTERPOLATION_H_
2 #define _1D_INTERPOLATION_H_
3
4 double uiuc_1Dinterpolation( double xData[100], 
5                              double yData[100], 
6                              int xmax, 
7                              double x );
8 int uiuc_1Dinterpolation( double xData[], 
9                           int yData[], 
10                           int xmax, 
11                           double x );
12
13 #endif // _1D_INTERPOLATION_H_