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