Skip to main content

evaluate

Method of ComplexPolynomial.

Overloads

NameDescription
evaluate(const ComplexMatrix x) -> ComplexMatrixEvaluates the polynomial over a matrix.
evaluate(const List<complex> x) -> ListEvaluates the polynomial at multiple points.
evaluate(complex x) -> complexEvaluates 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.