Package | Description |
---|---|
Optimizers |
Provides classes for optimising a likelihood.
|
Modifier and Type | Method and Description |
---|---|
static ConjugateGradient.Update |
ConjugateGradient.Update.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConjugateGradient.Update[] |
ConjugateGradient.Update.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
ConjugateGradient(ConjugateGradient.Update update)
Constructor that uses the givemn update method and default values for rigour (1e-7)
and output (none)
|
ConjugateGradient(ConjugateGradient.Update update,
ConjugateGradient.ProgressLevel progressLevel)
Constructor that uses the given update method
(BEALE_SORENSON_HESTENES_STIEFEL) and output (none) but
the default values for rigour (1e-7),
|
ConjugateGradient(double tol,
ConjugateGradient.Update update)
Constructor that uses the given tolerance and update method but
the default output (none)
|
ConjugateGradient(double tol,
ConjugateGradient.Update update,
ConjugateGradient.ProgressLevel progressLevel)
Constructor that uses the given values for rigour, update method
and output
|