12 lines
414 B
C
12 lines
414 B
C
#ifndef _2D_INTERPOLATION_H_
|
|
#define _2D_INTERPOLATION_H_
|
|
|
|
double uiuc_2Dinterpolation( double xData[100][100],
|
|
double yData[100],
|
|
double zData[100][100],
|
|
int xmax[100],
|
|
int ymax,
|
|
double x,
|
|
double y );
|
|
|
|
#endif // _2D_INTERPOLATION_H_
|