public static enum Eigen.Method extends java.lang.Enum<Eigen.Method>
| Enum Constant and Description |
|---|
CHARACTERISTIC_POLYNOMIAL
for a matrix of dimension 4 or smaller
|
QR
for any matrix
|
SYMMETRY
for a symmetric matrix (Not supported yet.)
|
| Modifier and Type | Method and Description |
|---|---|
static Eigen.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Eigen.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Eigen.Method CHARACTERISTIC_POLYNOMIAL
public static final Eigen.Method SYMMETRY
public static final Eigen.Method QR
public static Eigen.Method[] values()
for (Eigen.Method c : Eigen.Method.values()) System.out.println(c);
public static Eigen.Method valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null