public static enum Matrix.Norm extends java.lang.Enum<Matrix.Norm>
Maxvalue is not a proper
matrix norm| Enum Constant and Description |
|---|
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
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
public static final Matrix.Norm One
public static final Matrix.Norm Frobenius
public static final Matrix.Norm Infinity
public static final Matrix.Norm Maxvalue
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 namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String netlib()