Matrix Structure Enumeration
Enumerates the options for the structure of a sparse matrix.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum MatrixStructureMembers
| UpperTriangular | 1 | The matrix is an upper-triangular matrix. |
| LowerTriangular | 2 | The matrix is a lower-triangular matrix. |
| Diagonal | 4 | The matrix is a diagonal matrix. |
| 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. |