RobustSolver<T> Constructor

Definition

Namespace: Numerics.NET.EquationSolvers.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0

Overload List

RobustSolver<T>() Constructs a new RobustSolver.
RobustSolver<T>(Func<T, T>, T, T) Constructs a new RobustSolver for a specified target function over a given bracketing interval and tolerance.
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.

RobustSolver<T>

Constructs a new RobustSolver.
C#
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.
C#
public RobustSolver(
	Func<T, T> targetFunction,
	T lowerBound,
	T upperBound
)

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.

Exceptions

ArgumentOutOfRangeException 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.
C#
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

ArgumentOutOfRangeException The tolerance is less than zero.

See Also