QRDecomposition<T>.ThinOrthogonalFactor Property

Gets the 'thin' part of the orthogonal matrix Q of this QRDecomposition<T>.

Definition

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

Property Value

Matrix<T>
A DenseMatrix<T>.

Remarks

If the matrix has more rows than columns, then only a part of the orthogonal matrix with the same number of columns as the matrix is relevant for most calculations.

See Also