public static enum SquareMatrix.Calculation extends java.lang.Enum<SquareMatrix.Calculation>
Enum Constant and Description |
---|
EIGEN
Use the eigendecompositin method
|
TAYLOR
Use the Taylor expansion mehtod
|
TAYLOR_NC
Use the Taylor expansion method without caching (useful for debugging)
|
Modifier and Type | Method and Description |
---|---|
static SquareMatrix.Calculation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SquareMatrix.Calculation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SquareMatrix.Calculation EIGEN
public static final SquareMatrix.Calculation TAYLOR
public static final SquareMatrix.Calculation TAYLOR_NC
public static SquareMatrix.Calculation[] values()
for (SquareMatrix.Calculation c : SquareMatrix.Calculation.values()) System.out.println(c);
public static SquareMatrix.Calculation 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