Package | Description |
---|---|
agi.foundation.numericalmethods.advanced |
Contains additional advanced numerical algorithms and supporting types.
|
Modifier and Type | Method and Description |
---|---|
BracketToward |
BrentFindRoot.getBracketToward()
Gets the behavior of the root finder when a sampled
function value exactly equals zero and
ConvergenceCriteria (get )
requires convergence on the independent variable. |
static BracketToward |
BracketToward.getDefault()
Get the enum constant that is considered to be the default.
|
static BracketToward |
BracketToward.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
static BracketToward |
BracketToward.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BracketToward[] |
BracketToward.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,
BracketToward bracketToward)
Initializes a new instance that can be used to find roots of a specified function.
|