Functions | |
template<class T> | |
void | add (Polynomial< T > &r, const Polynomial< T > &p, const Polynomial< T > &q) |
template<class T> | |
void | add (Polynomial< T > &p, const Polynomial< T > &q) |
template<class T> | |
void | sub (Polynomial< T > &r, const Polynomial< T > &p, const Polynomial< T > &q) |
template<class T> | |
void | sub (Polynomial< T > &p, const Polynomial< T > &q) |
template<class T> | |
void | div (Polynomial< T > &q, Polynomial< T > &r, const Polynomial< T > &u, const Polynomial< T > &v) |
template<class T> | |
void | div (Polynomial< T > &u, Polynomial< T > &r, const Polynomial< T > &v) |
template<class T> | |
void | mul (Polynomial< T > &r, const T &s, const Polynomial< T > &p) |
template<class T> | |
void | mul (Polynomial< T > &p, const T &s) |
template<class T> | |
void | mul (Polynomial< T > &r, const Polynomial< T > &p, const Polynomial< T > &q) |
|
in-place polynomial addition. Performs in-place addition of two polynomials .
Definition at line 625 of file Polynomial.h. |
|
out-of-place polynomial addition. Performs addition of two polynomials , resulting polynomial is stored in user-supplied polynomial r.
Definition at line 590 of file Polynomial.h. |
|
in-place polynomial division. Performs polynomial division. On exit:
Definition at line 752 of file Polynomial.h. |
|
out-of-place polynomial division. Performs polynomial division. On exit:
Definition at line 711 of file Polynomial.h. |
|
out-of-place polynomial multiply. Multiplies two polynomials by convolution.
Definition at line 830 of file Polynomial.h. |
|
in-place polynomial scaling. Polynomial scaling. Performs the operation .
Definition at line 811 of file Polynomial.h. |
|
out-of-place polynomial scaling. Polynomial scaling. Performs the operation .
Definition at line 789 of file Polynomial.h. |
|
in-place substraction of polynomials. Performs in-place substraction of two polynomials .
Definition at line 683 of file Polynomial.h. |
|
out-of-place substraction of polynomials. Performs substraction of two polynomials , resulting polynomial is stored in user-supplied polynomial r.
Definition at line 650 of file Polynomial.h. |