Home > Extreme Optimization Mathematics Library for .NET > Reference > Extreme.Mathematics.LinearAlgebra Namespace


Extreme Optimization Mathematics Library for .NET

MatrixTriangleMode Enumeration

Represents the possible values specifying the part of the storage array where the elements of a triangular or symmetrical matrix are stored.

[Visual Basic]
Public Enum MatrixTriangleMode
[C#]
public enum MatrixTriangleMode

Remarks

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

Members

Member NameDescription
Upper The matrix is upper triangular, or the matrix elements are stored in the upper triangular portion of the storage array.
Lower The matrix is lower triangular, or the matrix elements are stored in the lower triangular portion of the storage array.
Both Both upper and lower diagonal elements are present.

Requirements

Namespace: Extreme.Mathematics.LinearAlgebra

Assembly: Extreme.Mathematics (in Extreme.Mathematics.dll)

See Also

Extreme.Mathematics.LinearAlgebra Namespace