Represents the possible values specifying the part of the
storage array where the elements of a
triangular or
symmetrical matrix
are stored.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum MatrixTriangle
Public Enumeration MatrixTriangle
public enum class MatrixTriangle
| Member name | Value | Description |
---|
| Upper | 0 |
The matrix is upper triangular, or the matrix elements
are stored in the upper triangular portion
of the storage array.
|
| Lower | 1 |
The matrix is lower triangular, or the matrix elements
are stored in the lower triangular portion
of the storage array.
|
| Both | 2 |
Both upper and lower diagonal elements are present.
|
This enumeration corresponds to the Uplo parameter
in the BLAS and LAPACK routines, and the CBLAS.UPLO enum in
the CBLAS interface definition.
Reference