Gets the upper triangular matrix R of this QRDecomposition.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public ReadOnly Property TrimmedUpperTriangularFactor As TriangularMatrix
C#
public TriangularMatrix TrimmedUpperTriangularFactor { get; }
C++
public:
TriangularMatrix^ TrimmedUpperTriangularFactor {
	TriangularMatrix^ get ();
}

Value

A TriangularMatrix.

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.