Robust 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
Robust | Constructs a new RobustSolver. |
Robust | Constructs a new RobustSolver for a specified target function over a given bracketing interval and tolerance. |
Robust | Constructs a new RobustSolver for a specified target function over a given bracketing interval and tolerance. |
RobustSolver<T>
Constructs a new RobustSolver.
public RobustSolver()
RobustSolver<T>(Func<T, T>, T, T)
Constructs a new RobustSolver for a specified
target function over a given bracketing interval and
tolerance.
public RobustSolver(
Func<T, T> targetFunction,
T lowerBound,
T upperBound
)
Parameters
Exceptions
Argument | The tolerance is less than zero. |
RobustSolver<T>(Func<T, T>, T, T, ConvergenceCriterion, T)
Constructs a new RobustSolver for a specified
target function over a given bracketing interval and
tolerance.
public RobustSolver(
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. |