Matrix<T>.Structure Property
Gets a value that indicates the structure of the sparse matrix.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A MatrixStructure value.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public MatrixStructure Structure { get; }
Property Value
MatrixStructureA MatrixStructure value.
Remarks
The possible values for this property are listed below.
Value | Description |
---|---|
General | The matrix does not have a specific structure. |
Symmetric | The matrix is symmetric. |
Hermitian | The complex matrix is hermitian. |
Triangular | The matrix is triangular. |
SkewSymmetric | The matrix is skew-symmetric or anti-symmetric. |
Diagonal | The matrix is a diagonal matrix. |