Package | Description |
---|---|
agi.foundation.numericalmethods.advanced |
Contains additional advanced numerical algorithms and supporting types.
|
Modifier and Type | Method and Description |
---|---|
ExtremumKind |
GoldenSectionFindExtremum.checkInitialBracketingPoints(double a,
double b,
double c)
Checks whether the given values will produce a valid initial bracketing interval.
|
ExtremumKind |
BrentFindExtremum.checkInitialBracketingPoints(double a,
double b,
double c)
Checks whether the given values will produce a valid initial bracketing interval.
|
static ExtremumKind |
GoldenSectionFindExtremum.checkInitialBracketingPoints(double a,
double fa,
double b,
double fb,
double c,
double fc,
double tolerance)
Checks whether the given values and function values will produce a valid initial bracketing interval.
|
static ExtremumKind |
BrentFindExtremum.checkInitialBracketingPoints(double a,
double fa,
double b,
double fb,
double c,
double fc,
double tolerance)
Checks whether the given values and function values will produce a valid initial bracketing interval.
|
static ExtremumKind |
ExtremumKind.getDefault()
Get the enum constant that is considered to be the default.
|
ExtremumKind |
GoldenSectionFindExtremum.getExtremumKind()
Gets whether this extremum is a minimum or maximum.
|
ExtremumKind |
BrentFindExtremum.getExtremumKind()
Gets whether this extremum is a minimum or maximum.
|
static ExtremumKind |
ExtremumKind.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
static ExtremumKind |
ExtremumKind.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtremumKind[] |
ExtremumKind.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|