RealPolynomial
Base class: Object
A RealPolynomial-valued polynomial.
Symbols
| Name | Description |
|---|---|
* | Scalar multiplication operator for Polynomial objects. |
*= | In-place scalar multiplication assignment operator for Polynomial objects. |
+ | Addition operator for Polynomial objects. |
+= | In-place addition assignment operator for Polynomial objects. |
- | Unary negation operator for Polynomial objects. |
-= | In-place subtraction assignment operator for Polynomial objects. |
/ | Scalar division operator for Polynomial objects. |
/= | In-place scalar division assignment operator for Polynomial objects. |
= | Assignment operator for Polynomial objects. |
== | Equality operator for Polynomial objects. |
Members
| Name | Description |
|---|---|
| compose | Composes the polynomial with another polynomial. |
| degree | Returns the degree of the polynomial. |
| evaluate | Evaluates the polynomial over a matrix. |
| get_coefficients | Returns the coefficients of the polynomial. |
| scale | Scales the polynomial by the given factor. |
| set_coefficients | Replaces the coefficients of the polynomial. |
| shift | Shifts the polynomial by the given amount. |