Header for new interpolation function
This commit is contained in:
parent
e16682a074
commit
995dd11238
|
|
@ -0,0 +1,8 @@
|
|||
#ifndef interp_h_included
|
||||
#define interp_h_included
|
||||
double BilinearInterpolation(double x, double y,
|
||||
int xind, int yind, double **td);
|
||||
double TrilinearInterpolation(double x, double y, double z,
|
||||
int xind, int yind, int zind, double ***td);
|
||||
int findCrossOver(double arr[], int n, double x);
|
||||
#endif /* include guard */
|
||||
Loading…
Reference in New Issue