Matrix Diagonal Enumeration
Represents the possible values that specify whether or not
a TriangularMatrix<T> has 1's on its diagonal.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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
NonUnitDiagonal | 0 | The is not unit-diagonal. |
UnitDiagonal | 1 | The matrix is unit-diagonal. |