MatrixDiagonal Enumeration

Represents the possible values that specify whether or not a TriangularMatrix<T> has 1's on its diagonal.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public enum MatrixDiagonal

Remarks

This enumeration corresponds to the Diag parameter in the BLAS and LAPACK routines, and the CBLAS.DIAG enum in the CBLAS interface definition.

Members

NonUnitDiagonal0 The is not unit-diagonal.
UnitDiagonal1 The matrix is unit-diagonal.

See Also