public static enum LevenbergMarquardt.RegularizationMethod extends Enum<LevenbergMarquardt.RegularizationMethod>
| Enum Constant and Description |
|---|
LEVENBERG
The Hessian approximated and regularized as
\( H_{\lambda} = J^T J + \lambda I \).
|
LEVENBERG_MARQUARDT
The Hessian approximated and regularized as
\( H_{\lambda} = J^T J + \lambda \text{diag}(J^T J) \).
|
| Modifier and Type | Method and Description |
|---|---|
static LevenbergMarquardt.RegularizationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LevenbergMarquardt.RegularizationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LevenbergMarquardt.RegularizationMethod LEVENBERG
public static final LevenbergMarquardt.RegularizationMethod LEVENBERG_MARQUARDT
public static LevenbergMarquardt.RegularizationMethod[] values()
for (LevenbergMarquardt.RegularizationMethod c : LevenbergMarquardt.RegularizationMethod.values()) System.out.println(c);
public static LevenbergMarquardt.RegularizationMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.