LQDecomposition<T>.TrimmedLowerTriangularFactor Property

Gets the upper triangular matrix R of this LQDecomposition<T>.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> TrimmedLowerTriangularFactor { get; protected set; }

Property Value

Matrix<T>
A TriangularMatrix<T>.

Remarks

If the number of rows of the decomposed matrix is greater than the number of columns, this property returns a square triangular matrix. Otherwise, the return value is the same as that for LowerTriangularFactor.

See Also