#include <Interpolators.h>
|
| virtual Y | getMean (const X x1, const Y y1, const X x2, const Y y2) const override |
| | Returns the mean interpolated value in the closed interval of [x1, x2]. More...
|
| |
|
| virtual Y | getMin (const X x1, const Y y1, const X x2, const Y y2) const override |
| | Returns the minimum interpolated value in the closed interval of [x1, x2]. More...
|
| |
| virtual Y | getMax (const X x1, const Y y1, const X x2, const Y y2) const override |
| | Returns the maximum interpolated value in the closed interval of [x1, x2]. More...
|
| |
| virtual | ~IInterpolator () |
| |
| virtual Y | getValue (const X x1, const Y y1, const X x2, const Y y2, const X x) const =0 |
| | Returns the interpolated value for the given x. More...
|
| |
◆ getMean()
template<typename X , typename Y >
|
|
inlineoverrideprivatevirtual |
Returns the mean interpolated value in the closed interval of [x1, x2].
Implements inet::math::IInterpolator< X, Y >.
37 auto v1 = this->
getValue(x1, y1, x2, y2, x1);
38 auto v2 = this->
getValue(x1, y1, x2, y2, x2);
The documentation for this class was generated from the following file: