Package | Description |
---|---|
agi.foundation.numericalmethods.advanced |
Contains additional advanced numerical algorithms and supporting types.
|
Modifier and Type | Method and Description |
---|---|
static BrentSolutionType |
BrentSolutionType.getDefault()
Get the enum constant that is considered to be the default.
|
static BrentSolutionType |
BrentSolutionType.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
static BrentSolutionType |
BrentSolutionType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BrentSolutionType[] |
BrentSolutionType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
BrentFindRoot(RealValuedScalarFunction function,
double variableTolerance,
double functionTolerance,
BrentSolutionType solutionType,
ConvergenceCriteria criteria)
Initializes a new instance that can be used to find roots of a specified function.
|
BrentFindRoot(RealValuedScalarFunction function,
double variableTolerance,
double functionTolerance,
BrentSolutionType solutionType,
ConvergenceCriteria criteria,
BracketToward bracketToward)
Initializes a new instance that can be used to find roots of a specified function.
|