Toms 748Solver Constructor
Definition
Namespace: Extreme.Mathematics.EquationSolvers
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Toms748Solver() | Constructs a new Toms748Solver. |
Toms748Solver( | Constructs a new Toms748Solver for a specified target function over a given bracketing interval and tolerance. |
Toms748Solver( | Constructs a new Toms748Solver for a specified target function over a given bracketing interval and tolerance. |
Toms748Solver
Constructs a new Toms748Solver.
public Toms748Solver()
Toms748Solver(Func<Double, Double>, Double, Double)
Constructs a new Toms748Solver for a specified
target function over a given bracketing interval and
tolerance.
public Toms748Solver(
Func<double, double> targetFunction,
double lowerBound,
double upperBound
)
Parameters
Exceptions
Argument | The tolerance is less than zero. |
Toms748Solver(Func<Double, Double>, Double, Double, ConvergenceCriterion, Double)
Constructs a new Toms748Solver for a specified
target function over a given bracketing interval and
tolerance.
public Toms748Solver(
Func<double, double> targetFunction,
double lowerBound,
double upperBound,
ConvergenceCriterion convergenceCriterion,
double tolerance
)
Parameters
- targetFunction Func<Double, Double>
- A delegate that represents a function of one variable delegate that specifies the target function.
- lowerBound Double
- The lower bound of the bracketing interval.
- upperBound Double
- 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 Double
- The tolerance to use when approximating the roots of the target function.
Exceptions
Argument | The tolerance is less than zero. |