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#
public MatrixStructure Structure { get; }

Property Value

MatrixStructure
A MatrixStructure value.

Remarks

The possible values for this property are listed below.

ValueDescription
GeneralThe matrix does not have a specific structure.
SymmetricThe matrix is symmetric.
HermitianThe complex matrix is hermitian.
TriangularThe matrix is triangular.
SkewSymmetricThe matrix is skew-symmetric or anti-symmetric.
DiagonalThe matrix is a diagonal matrix.

See Also