Click or drag to resize
DigitalRuneQRDecompositionF Constructor
Creates the QR decomposition of the given matrix.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public QRDecompositionF(
	MatrixF matrixA
)

Parameters

matrixA
Type: DigitalRune.Mathematics.AlgebraMatrixF
The matrix A. (Can be rectangular. NumberOfRows must be ≥ NumberOfColumns.)
Exceptions
ExceptionCondition
ArgumentNullExceptionmatrixA is .
ArgumentException The number of rows must be greater than or equal to the number of columns.
Remarks
The QR decomposition is computed by Householder reflections.
See Also