|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SimpleMatrix.InversionType>
edu.stanford.rsl.konrad.numerics.SimpleMatrix.InversionType
public static enum SimpleMatrix.InversionType
Set the algorithm to be used during inversion
Enum Constant Summary | |
---|---|
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 |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |