HornerResult class

Utility class internally used by Laguerre to hold the results of horner polynomial evaluation.

Constructors

HornerResult(List<Complex> polynomial, Complex value)
Requires list of newly evaluated coefficients (polynomial) and the estimated "distance" from the root (value).
const

Properties

hashCode int
The hash code for this object.
no setteroverride
polynomial List<Complex>
The list of evaluated coefficients.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value Complex
The "distance" from the desired root.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
override