MatrixType indicates what part of the matrix is to be printed.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public enum MatrixType
Visual Basic (Declaration)
Public Enumeration MatrixType
Visual C++
public enum class MatrixType

Members

Member nameDescription
Full
Indicates that the full matrix is to be printed.
UpperTriangular
Indicates that only the upper triangular elements of the matrix are to be printed. The matrix still must be a rectangular matrix.
LowerTriangular
Indicates that only the lower triangular elements of the matrix are to be printed. The matrix still must be a rectangular matrix.
StrictUpperTriangular
Indicates that only the strict upper triangular elements of the matrix are to be printed. The matrix still must be a rectangular matrix.
StrictLowerTriangular
Indicates that only the strict lower triangular elements of the matrix are to be printed. The matrix still must be a rectangular matrix.

See Also