Click or drag to resize

BairstowRootFinderFindUniqueRoots(Polynomial, Int32, Double) Method

Finds the unique roots of a polynomial using repeated application of Bairstow's method.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static ICollection<DoubleComplex> FindUniqueRoots(
	Polynomial p,
	int maxIterations = 100,
	double tolerance = 1E-12
)

Parameters

p  Polynomial
The polynomial to solve.
maxIterations  Int32  (Optional)
Maximum number of iterations to perform during an application of Bairstow's method.
tolerance  Double  (Optional)
Iteration in Bairstow's method terminates if
C#
StepLength
falls below this value.

Return Value

ICollectionDoubleComplex
The set of unique roots.
See Also