public static enum Eigen.Method extends Enum<Eigen.Method>
Enum Constant and Description |
---|
CHARACTERISTIC_POLYNOMIAL
For a matrix of dimension 4 or smaller.
|
MR3
For a symmetric matrix.
|
QR
For any matrix.
|
QR_SYMMETRIC
For a symmetric matrix.
|
SYMMETRY
For a symmetric matrix.
|
Modifier and Type | Method and Description |
---|---|
static Eigen.Method |
valueOf(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 MR3
public static final Eigen.Method QR_SYMMETRIC
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(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.