Evaluation of real polynomials - the implementation. More...
Go to the source code of this file.
Functions | |
| template<class T > | |
| T | vnl_real_polynomial_evaluate (double const *a, int n, T const &x) |
| vnl_real_polynomial | operator+ (const vnl_real_polynomial &f1, const vnl_real_polynomial &f2) |
| Returns sum of two polynomials f1(x)+f2(x). More... | |
| vnl_real_polynomial | operator- (const vnl_real_polynomial &f1, const vnl_real_polynomial &f2) |
| Returns sum of two polynomials f1(x)-f2(x). More... | |
| vnl_real_polynomial | operator * (const vnl_real_polynomial &f1, const vnl_real_polynomial &f2) |
| Returns polynomial which is product of two polynomials f1(x)*f2(x). More... | |
| double | vnl_rms_difference (const vnl_real_polynomial &f1, const vnl_real_polynomial &f2, double x1, double x2) |
| Returns RMS difference between f1 and f2 over range [x1,x2]. More... | |
Evaluation of real polynomials - the implementation.
Modifications IMS (Manchester) 14/03/2001: Added Manchester IO scheme
Definition in file vnl_real_polynomial.cxx.
| vnl_real_polynomial operator * | ( | const vnl_real_polynomial & | f1, |
| const vnl_real_polynomial & | f2 | ||
| ) |
Returns polynomial which is product of two polynomials f1(x)*f2(x).
Definition at line 141 of file vnl_real_polynomial.cxx.
| VNL_EXPORT vnl_real_polynomial operator+ | ( | const vnl_real_polynomial & | f1, |
| const vnl_real_polynomial & | f2 | ||
| ) |
Returns sum of two polynomials f1(x)+f2(x).
Returns polynomial which is sum of two polynomials f1(x)+f2(x).
Definition at line 97 of file vnl_real_polynomial.cxx.
| VNL_EXPORT vnl_real_polynomial operator- | ( | const vnl_real_polynomial & | f1, |
| const vnl_real_polynomial & | f2 | ||
| ) |
Returns sum of two polynomials f1(x)-f2(x).
Returns polynomial which is different of two polynomials f1(x)-f2(x).
Definition at line 119 of file vnl_real_polynomial.cxx.
| T vnl_real_polynomial_evaluate | ( | double const * | a, |
| int | n, | ||
| T const & | x | ||
| ) |
Definition at line 16 of file vnl_real_polynomial.cxx.
| VNL_EXPORT double vnl_rms_difference | ( | const vnl_real_polynomial & | f1, |
| const vnl_real_polynomial & | f2, | ||
| double | x1, | ||
| double | x2 | ||
| ) |
Returns RMS difference between f1 and f2 over range [x1,x2].
Definition at line 176 of file vnl_real_polynomial.cxx.
1.8.15