Click or drag to resize

RectangularMatrixQRDecomposition Method

Computes the QR decomposition of the matrix.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public QRDecomposition QRDecomposition()

Return Value

Type: QRDecomposition
The QR decomposition of the matrix.
Exceptions
ExceptionCondition
InvalidOperationExceptionThe matrix has fewer columns that rows.
Remarks

Only matrices with a number of rows greater than or equal to the number of columns can be QR decomposed. If your matrix has more columns than rows, you can QR decompose its transpose.

See Also