Gets a value that indicates the structure of the sparse matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public MatrixStructure Structure { get; }
Public ReadOnly Property Structure As MatrixStructure
Get
public:
property MatrixStructure Structure {
MatrixStructure get ();
}
member Structure : MatrixStructure with get
Property Value
Type:
MatrixStructureA
MatrixStructure value.
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. |
Reference