Matrix Structure Enumeration
Enumerates the options for the structure of a sparse matrix.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public enum MatrixStructure
Members
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. |