2000-03-22 22:01:33 +00:00
|
|
|
#ifndef _2D_INTERPOLATION_H_
|
|
|
|
#define _2D_INTERPOLATION_H_
|
|
|
|
|
2000-09-06 19:52:37 +00:00
|
|
|
double uiuc_2Dinterpolation( double xData[100][100],
|
|
|
|
double yData[100],
|
|
|
|
double zData[100][100],
|
|
|
|
int xmax[100],
|
|
|
|
int ymax,
|
|
|
|
double x,
|
|
|
|
double y );
|
2000-03-22 22:01:33 +00:00
|
|
|
|
|
|
|
#endif // _2D_INTERPOLATION_H_
|