public static enum ComplexMatrix.MatrixType extends Enum<ComplexMatrix.MatrixType>
Enum Constant and Description |
---|
GENERAL
Matrix is general rectangular.
|
HERMITIAN
Matrix is square Hermitian.
|
SYMMETRIC
Matrix is square symmetric.
|
Modifier and Type | Method and Description |
---|---|
static ComplexMatrix.MatrixType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComplexMatrix.MatrixType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComplexMatrix.MatrixType GENERAL
public static final ComplexMatrix.MatrixType SYMMETRIC
public static final ComplexMatrix.MatrixType HERMITIAN
public static ComplexMatrix.MatrixType[] values()
for (ComplexMatrix.MatrixType c : ComplexMatrix.MatrixType.values()) System.out.println(c);
public static ComplexMatrix.MatrixType 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 nullCopyright © 2020 Rogue Wave Software. All rights reserved.