List of all members.
Detailed Description
template<typename real_type_>
class OpenTissue::interpolation::PolynomialInterpolator< real_type_ >
Polynomial Interpolator. This is an implementation of the algorithm, which is described in Numerical Recipes in C, pp. 108-110.
The original algorithm as it stands in the book have a small error regarding how it tracks its way through the tableau (try to watch what happens if you extrapolate on the right side, that is only want to pick D's). We have corrected this error in our implementation.
Member Typedef Documentation
template<typename real_type_ >
Constructor & Destructor Documentation
template<typename real_type_ >
template<typename real_type_ >
Member Function Documentation
template<typename real_type_ >
Error Estimate Method.
- Returns:
- The value of the error estimate.
template<typename real_type_ >
Get Interpolation Value.
- Parameters:
-
| x | The point at which the interpolated or extrapolated value should be found at. |
- Returns:
- The interpolated (or extrapolated) value at the point x.
template<typename real_type_ >
Set Tableau Method.
- Parameters:
-
| x | The array of parameter values. |
| y | The array of corresponding function values. Must have same length as the x-array. |
The documentation for this class was generated from the following file: