Antkeeper
0.0.1
|
Chebychev polynomials. More...
Functions | |
template<class InputIt , class T > | |
T | evaluate (InputIt first, InputIt last, T x) |
Evaluates a Chebyshev polynomial. More... | |
template<class InputIt , class T > | |
T | evaluate (InputIt first, InputIt last, T min, T max, T x) |
Evaluates a Chebyshev polynomial. More... | |
Chebychev polynomials.
T math::polynomial::chebyshev::evaluate | ( | InputIt | first, |
InputIt | last, | ||
T | min, | ||
T | max, | ||
T | x | ||
) |
Evaluates a Chebyshev polynomial.
first,last | Range of Chebychev polynomial coefficients. |
min,max | Domain of the approximated function. |
x | Value on the interval [min, max] . |
Definition at line 96 of file polynomial.hpp.
T math::polynomial::chebyshev::evaluate | ( | InputIt | first, |
InputIt | last, | ||
T | x | ||
) |
Evaluates a Chebyshev polynomial.
[in] | first,last | Range of Chebychev polynomial coefficients. |
[in] | x | Value on the interval [-1, 1] . |
Definition at line 66 of file polynomial.hpp.