Matrix<T>.Structure Property
Gets a value that indicates the structure of the sparse matrix.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
A MatrixStructure value.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
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. |