|
| template<class T > |
| T | Interpolate::linearReg1D (T v0, T v1, float x) |
| |
| template<class T > |
| T | Interpolate::linearReg1DWithUdf (T v0, T v1, float x) |
| |
| template<class T > |
| T | Interpolate::linear1D (float x0, T v0, float x1, T v1, float x) |
| |
| template<class iT > |
| iT | Interpolate::linear1Di (float x0, iT v0, float x1, iT v1, float x) |
| | Interpolate 1D regularly sampled, using a 3rd order polynome. More...
|
| |
| template<class T > |
| T | Interpolate::polyReg1D (T vm1, T v0, T v1, T v2, float x) |
| |
| template<class T > |
| T | Interpolate::polyReg1DWithUdf (T vm1, T v0, T v1, T v2, float x) |
| |
| template<class T > |
| T | Interpolate::parabolic1D (float x0, T v0, float x1, T v1, float x2, T v2, float x) |
| |
| template<class T > |
| T | Interpolate::poly1D (float x0, T v0, float x1, T v1, float x2, T v2, float x3, T v3, float x) |
| |
| template<class T > |
| T | Interpolate::predictAtZero1D (T vm2, T vm1, T v1, T v2) |
| |
| template<class T > |
| T | Interpolate::predictAtZero1D (T vm3, T vm2, T vm1, T v1, T v2, T v3) |
| |