delphi_cb
 All Classes Namespaces Files Functions Variables Macros
misc_interpl.h
Go to the documentation of this file.
1 
8 #ifndef INTERPL_H_
9 #define INTERPL_H_
10 
11 #include <vector>
12 #include <math.h> /* floor */
13 
14 #include "../interface/environment.h"
15 #include "../interface/exceptions.h"
16 #include "misc_grid.h"
17 
18 using namespace std;
19 
23 extern delphi_real interpl(const delphi_integer& ieExtrema, delphi_real *** fMap, const SGrid<delphi_real>& gPoint);
24 
28 extern delphi_real boolinterpl(const delphi_integer& igMaxGrid, const vector<bool>& prgbMap, const SGrid<delphi_real>& gPoint);
29 
30 #endif // INTERPL_H_
delphi_real interpl(const delphi_integer &ieExtrema, delphi_real ***fMap, const SGrid< delphi_real > &gPoint)
Definition: misc_interpl.cpp:30
delphi_real boolinterpl(const delphi_integer &igMaxGrid, const vector< bool > &prgbMap, const SGrid< delphi_real > &gPoint)
Definition: misc_interpl.cpp:84
grid data types and associated operations