Root Bracketing Solver<T> Constructor
Definition
Namespace: Numerics.NET.EquationSolvers.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Overload List
Root | Constructs a new RootBracketingSolver object. |
Root | Constructs a new RootBracketingSolver object for the specified target function and convergence parameters. |
Root | Constructs a new RootBracketingSolver object for the specified target function and convergence parameters. |
RootBracketingSolver<T>
Constructs a new RootBracketingSolver object.
protected RootBracketingSolver()
RootBracketingSolver<T>(Func<T, T>, T, T)
Constructs a new RootBracketingSolver object for the
specified target function and convergence parameters.
protected RootBracketingSolver(
Func<T, T> targetFunction,
T lowerBound,
T upperBound
)
Parameters
Exceptions
Argument | The tolerance is less than zero. |
RootBracketingSolver<T>(Func<T, T>, T, T, ConvergenceCriterion, T)
Constructs a new RootBracketingSolver object for the
specified target function and convergence parameters.
protected RootBracketingSolver(
Func<T, T> targetFunction,
T lowerBound,
T upperBound,
ConvergenceCriterion convergenceCriterion,
T tolerance
)
Parameters
- targetFunction Func<T, T>
- A delegate that represents a function of one variable delegate that specifies the target function.
- lowerBound T
- The lower bound of the bracketing interval.
- upperBound T
- The upper bound of the bracketing interval.
- convergenceCriterion ConvergenceCriterion
- One of the ConvergenceCriterion values that specifies the criterion that is to be used in the convergence test for the algorithm.
- tolerance T
- The tolerance to use when approximating the roots of the target function.
Exceptions
Argument | The tolerance is less than zero. |