QRDecomposition<T>.TrimmedUpperTriangularFactor Property

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

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> TrimmedUpperTriangularFactor { 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 UpperTriangularFactor.

See Also