Click or drag to resize
DigitalRuneQRDecompositionD 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 QRDecompositionD(
	MatrixD matrixA
)

Parameters

matrixA
Type: DigitalRune.Mathematics.AlgebraMatrixD
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