BrentFindRoot Constructor (RealValuedScalarFunction, Double, Double, BrentSolutionType, ConvergenceCriteria) |
Initializes a new instance that can be used to find roots of a specified function.
The BracketToward property is set based on the value of the
solutionType parameter as follows:
Namespace:
AGI.Foundation.NumericalMethods.Advanced
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public BrentFindRoot(
RealValuedScalarFunction function,
double variableTolerance,
double functionTolerance,
BrentSolutionType solutionType,
ConvergenceCriteria criteria
)
Public Sub New (
function As RealValuedScalarFunction,
variableTolerance As Double,
functionTolerance As Double,
solutionType As BrentSolutionType,
criteria As ConvergenceCriteria
)
public:
BrentFindRoot(
RealValuedScalarFunction^ function,
double variableTolerance,
double functionTolerance,
BrentSolutionType solutionType,
ConvergenceCriteria criteria
)
new :
function : RealValuedScalarFunction *
variableTolerance : float *
functionTolerance : float *
solutionType : BrentSolutionType *
criteria : ConvergenceCriteria -> BrentFindRoot
Parameters
- function
- Type: AGI.Foundation.NumericalMethodsRealValuedScalarFunction
The function to be called in order to evaluate intermediate variable values. - variableTolerance
- Type: SystemDouble
The convergence tolerance in the variable value. - functionTolerance
- Type: SystemDouble
The convergence tolerance in the function value. - solutionType
- Type: AGI.Foundation.NumericalMethods.AdvancedBrentSolutionType
Indicates on which side of zero a solution must be found. - criteria
- Type: AGI.Foundation.NumericalMethods.AdvancedConvergenceCriteria
Specifies the criteria to be used in determining convergence.
Exceptions See Also