public static enum Matrix.Norm extends 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 |
|---|---|
String |
netlib() |
static Matrix.Norm |
valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String netlib()
Copyright © 2015. All Rights Reserved.