ILNumerics - Technical Application Development
Assembly: ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Possible properties for matrices
[ILNumerics Core Module]
Namespace: ILNumerics
Assembly: ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Hermitian | 1 | Hermitian matrix | |
PositivDefinite | 2 | Positive definite | |
UpperTriangular | 4 | Upper triangular matrix | |
LowerTriangular | 8 | Lower triangular matrix | |
Square | 16 | Square matrix | |
Diagonal | 32 | Diagonal matrix | |
Singular | 64 | The matrix is singular | |
Hessenberg | 128 | Hessenberg matrix | |
Householder | 256 | Householder matrix | |
Unitary | 512 | Unitary matrix | |
Orthogonal | 1024 | Orthogonal matrix | |
Orthonormal | 2048 | Orthonormal matrix | |
RankDeficient | 4096 | The matrix has deficient rank | |
None | 8192 | The matrix has no special properties | |
Unknown | 0 | No specific properties known (default) |
Remarks
These properties may be returned by function overloads receiving a MatrixProperties parameter by reference.
This enum is a bitflag'ed enum! You may query for any combination via the bitwise operators | and &.
[ILNumerics Core Module]
See Also