public static enum SVD.Method extends Enum<SVD.Method>
Enum Constant and Description |
---|
GOLUB_KAHAN
Golub-Kahan, for higher precision.
|
MR3
Multiple Relatively Robust Representation (MRRR), for higher speed.
|
Modifier and Type | Method and Description |
---|---|
static SVD.Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SVD.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SVD.Method GOLUB_KAHAN
public static final SVD.Method MR3
public static SVD.Method[] values()
for (SVD.Method c : SVD.Method.values()) System.out.println(c);
public static SVD.Method 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 © 2010-2020 NM FinTech Ltd.. All Rights Reserved.