Rosetta  2016.11
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Namespaces | Functions
interpolation.hh File Reference

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 >
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 >
numeric::interpolation::interpolated (X const &a, F const &f1, F const &f2)
 Linearly interpolated value: f( x ) More...
 
template<typename X , typename 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 >
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 >
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 >
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...
 

Detailed Description

Interpolation functions.

Author
Stuart G. Mentzer (Stuar.nosp@m.t_Me.nosp@m.ntzer.nosp@m.@obj.nosp@m.exx.c.nosp@m.om)