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