Finds a root of the given function within the given interval.

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
double Find(
	OneVariableFunction f,
	Interval interval
)
Visual Basic (Declaration)
Function Find ( _
	f As OneVariableFunction, _
	interval As Interval _
) As Double
Visual C++
double Find(
	OneVariableFunction^ f, 
	Interval^ interval
)

Parameters

f
Type: CenterSpace.NMath.Core..::.OneVariableFunction
The function.
interval
Type: CenterSpace.NMath.Core..::.Interval
The interval.

Return Value

A root of f within interval.

Remarks

Iteration stops when either the estimated error is less than the tolerance, or the maximum number of iterations is reached. Setting the error tolerance to less than zero ensures that the maximum number of iterations is always reached.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.NMathException Thrown if a root is not found.

See Also