Student[LinearAlgebra]
QRDecomposition
compute the QR factorization of a Matrix
Calling Sequence
Parameters
Description
Examples
QRDecomposition(A, options)
A
-
Matrix
options
(optional) parameters; for a complete list, see LinearAlgebra[QRDecomposition]
The QRDecomposition command computes the QR decomposition of the Matrix A, that is, a factorization into a product of an orthogonal (or unitary) Matrix, Q, and an upper triangular Matrix, R, such that A=Q·R. The Matrices Q and R are returned in an expression sequence.
with⁡StudentLinearAlgebra:
A≔1,2,3|4,5,6
A≔142536
Q,R≔QRDecomposition⁡A
Q,R≔14144⁢2121661472121−633⁢1414−2⁢212166,1416⁢14703⁢21700
Equal⁡Q·R,A
true
See Also
LinearAlgebra[QRDecomposition]
Student[LinearAlgebra][GramSchmidt]
Student[LinearAlgebra][LUDecomposition]
Download Help Document