Header for new interpolation function

This commit is contained in:
Holger Vogt 2020-04-25 20:21:58 +02:00
parent e16682a074
commit 995dd11238
1 changed files with 8 additions and 0 deletions

View File

@ -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 */