Skip to main content

evaluate

Method of Polynomial<complex>.

Overloads

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