Finds a root of the given function within the given interval.
Namespace:
CenterSpace.NMath.AnalysisAssembly: 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
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.NMathException | Thrown if a root is not found. |