QRDecomposition<T>.UpperTriangularFactor Property

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

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public Matrix<T> UpperTriangularFactor { get; protected set; }

Property Value

Matrix<T>
A TriangularMatrix<T>.

Remarks

This property returns a matrix of the same dimensions as the decomposed matrix.

See Also