public static enum SimpleMatrix.InversionType extends java.lang.Enum<SimpleMatrix.InversionType>
Enum Constant and Description |
---|
INVERT_LU
Inverts any matrices using the LU decomposition
|
INVERT_QR
Inverts any matrices using the LU decomposition
|
INVERT_RT
Inverts homogeneous rigid motion matrices directly
|
INVERT_SVD
Inverts any matrices using the SVD decomposition
|
INVERT_UPPER_TRIANGULAR
Inverts upper-triangular matrices using back substitution
|
Modifier and Type | Method and Description |
---|---|
static SimpleMatrix.InversionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimpleMatrix.InversionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleMatrix.InversionType INVERT_LU
public static final SimpleMatrix.InversionType INVERT_SVD
public static final SimpleMatrix.InversionType INVERT_QR
public static final SimpleMatrix.InversionType INVERT_UPPER_TRIANGULAR
public static final SimpleMatrix.InversionType INVERT_RT
public static SimpleMatrix.InversionType[] values()
for (SimpleMatrix.InversionType c : SimpleMatrix.InversionType.values()) System.out.println(c);
public static SimpleMatrix.InversionType 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