public static enum RidgeRegression.SolverMode extends Enum<RidgeRegression.SolverMode>
Enum Constant and Description |
---|
EXACT_CHOLESKY
Solves by
CholeskyDecomposition |
EXACT_SVD
Solves by
SingularValueDecomposition |
Modifier and Type | Method and Description |
---|---|
static RidgeRegression.SolverMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RidgeRegression.SolverMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RidgeRegression.SolverMode EXACT_CHOLESKY
CholeskyDecomposition
public static final RidgeRegression.SolverMode EXACT_SVD
SingularValueDecomposition
public static RidgeRegression.SolverMode[] values()
for (RidgeRegression.SolverMode c : RidgeRegression.SolverMode.values()) System.out.println(c);
public static RidgeRegression.SolverMode 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 © 2017. All rights reserved.