Click or drag to resize

FZeroFind(OneVariableFunction, Double) Method

Finds one root of f near the starting guess, x0.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public double Find(
	OneVariableFunction f,
	double x0
)

Parameters

f  OneVariableFunction
The function.
x0  Double
The initial guess of the root.

Return Value

Double
A root of f near x0.
Remarks
Depends on the success of the geometric bracketing function to find an initial interval containing the root of interest.
See Also