public static enum BidiagonalMatrix.BidiagonalMatrixType extends Enum<BidiagonalMatrix.BidiagonalMatrixType>
Enum Constant and Description |
---|
LOWER
a lower bi-diagonal matrix, where there are only non-zero entries on the main and sub
diagonal
|
UPPER
an upper bi-diagonal matrix, where there are only non-zero entries on the main and super
diagonal
|
Modifier and Type | Method and Description |
---|---|
static BidiagonalMatrix.BidiagonalMatrixType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BidiagonalMatrix.BidiagonalMatrixType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BidiagonalMatrix.BidiagonalMatrixType UPPER
public static final BidiagonalMatrix.BidiagonalMatrixType LOWER
public static BidiagonalMatrix.BidiagonalMatrixType[] values()
for (BidiagonalMatrix.BidiagonalMatrixType c : BidiagonalMatrix.BidiagonalMatrixType.values()) System.out.println(c);
public static BidiagonalMatrix.BidiagonalMatrixType 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 © 2010-2020 NM FinTech Ltd.. All Rights Reserved.