|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Matrix.Norm>
no.uib.cipr.matrix.Matrix.Norm
public static enum Matrix.Norm
Supported matrix-norms. Note that Maxvalue
is not a proper
matrix norm
Enum Constant Summary | |
---|---|
Frobenius
The root of sum of the sum of squares |
|
Infinity
Maximum column sum |
|
Maxvalue
Largest entry in absolute value. |
|
One
Maximum absolute row sum |
Method Summary | |
---|---|
java.lang.String |
netlib()
|
static Matrix.Norm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Matrix.Norm[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 Matrix.Norm One
public static final Matrix.Norm Frobenius
public static final Matrix.Norm Infinity
public static final Matrix.Norm Maxvalue
Method Detail |
---|
public static Matrix.Norm[] values()
for (Matrix.Norm c : Matrix.Norm.values()) System.out.println(c);
public static Matrix.Norm 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 nullpublic java.lang.String netlib()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |