MatrixStructure 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#
public enum MatrixStructure

Members

UpperTriangular1 The matrix is an upper-triangular matrix.
LowerTriangular2 The matrix is a lower-triangular matrix.
Diagonal4 The matrix is a diagonal matrix.
General8 The matrix does not have a specific structure.
Full8 The matrix does not have a specific structure.
Symmetric16 The matrix is symmetric.
Hermitian32 The complex matrix is hermitian.
SkewSymmetric128 The matrix is skew-symmetric or anti-symmetric.

See Also