Click or drag to resize

BairstowRootFinderFindAllRoots(Polynomial, Int32, Double) Method

Finds all the roots of polynomial by repeated application of Biarstow's method.

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

Parameters

p  Polynomial
The polynomial to solve.
maxIterations  Int32  (Optional)
Iteration terminates when the iteration count exceeds this value.
tolerance  Double  (Optional)
Iteration terminates if
C#
StepLength
fall below this value.

Return Value

IListBairstowRootFinderSolveResult
List of results for each application of Bairstow's method.
See Also