evaluate
Method of Polynomial<real>.
Overloads
| Name | Description |
|---|---|
evaluate(const RealMatrix x) -> RealMatrix | Evaluates the polynomial over a matrix. |
evaluate(const Polynomial<real> x) -> Polynomial<real> | Evaluates the polynomial with another polynomial. |
evaluate(const List<real> x) -> List | Evaluates the polynomial at multiple points. |
evaluate(real x) -> real | Evaluates the polynomial at a given point. |
evaluate(const RealMatrix x) -> RealMatrix
Evaluates the polynomial over a matrix.
Parameters
- x: The matrix over which to evaluate the polynomial.
evaluate(const Polynomial<real> x) -> Polynomial<real>
Evaluates the polynomial with another polynomial.
Parameters
- x: The polynomial to evaluate with.
evaluate(const List<real> x) -> List
Evaluates the polynomial at multiple points.
Parameters
- x: The points at which to evaluate the polynomial.
evaluate(real x) -> real
Evaluates the polynomial at a given point.
Parameters
- x: The point at which to evaluate the polynomial.