![]() |
Rosetta
3.7
|
Interpolation functions. More...
#include <numeric/numeric.functions.hh>
#include <numeric/NumericTraits.hh>
#include <utility/assert.hh>
#include <cmath>
Namespaces | |
numeric | |
Unit headers. | |
numeric::interpolation | |
Functions | |
template<typename X , typename F > | |
F | numeric::interpolation::interpolated (X const &x, X const &x1, X const &x2, F const &f1, F const &f2) |
Linearly interpolated value: f( x ) More... | |
template<typename X , typename F > | |
F | numeric::interpolation::interpolated (X const &a, F const &f1, F const &f2) |
Linearly interpolated value: f( x ) More... | |
template<typename X , typename F > | |
F | numeric::interpolation::interpolated_delta (X const &a, F const &f1, F const &f2) |
Linearly interpolated delta value: f( x ) - f1. More... | |
template<typename X , typename Y , typename F > | |
F | numeric::interpolation::bilinearly_interpolated (X const &x, X const &x1, X const &x2, Y const &y, Y const &y1, Y const &y2, F const &f11, F const &f12, F const &f21, F const &f22) |
Bilinearly interpolated value: f( x, y ) More... | |
template<typename X , typename Y , typename F > | |
F | numeric::interpolation::bilinearly_interpolated (X const &ax, Y const &ay, F const &f11, F const &f12, F const &f21, F const &f22) |
Bilinearly interpolated value. More... | |
template<typename X , typename Y , typename F > | |
F | numeric::interpolation::bilinearly_interpolated (X const &ax, Y const &ay, X const &bx, Y const &by, F const &f11, F const &f12, F const &f21, F const &f22) |
Bilinearly interpolated value. More... | |
Interpolation functions.