Enumerates the options for the structure of a sparse matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum MatrixStructure
Public Enumeration MatrixStructure
public enum class MatrixStructure
| Member name | Value | Description |
---|
| General | 8 |
The matrix does not have a specific structure.
|
| Full | 8 |
The matrix does not have a specific structure.
|
| Symmetric | 16 |
The matrix is symmetric.
|
| Hermitian | 32 |
The complex matrix is hermitian.
|
| SkewSymmetric | 128 |
The matrix is skew-symmetric or anti-symmetric.
|
| LowerTriangular | 2 |
The matrix is a lower-triangular matrix.
|
| UpperTriangular | 1 |
The matrix is an upper-triangular matrix.
|
| Diagonal | 4 |
The matrix is a diagonal matrix.
|
Reference