QRDecomposition - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


Student[LinearAlgebra]

  

QRDecomposition

  

compute the QR factorization of a Matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

QRDecomposition(A, options)

Parameters

A

-

Matrix

options

-

(optional) parameters; for a complete list, see LinearAlgebra[QRDecomposition]

Description

• 

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.

Examples

withStudentLinearAlgebra:

A1,2,3|4,5,6

A142536

(1)

Q,RQRDecompositionA

Q,R14144212166147212163314142212166,14161470321700

(2)

EqualQ·R,A

true

(3)

See Also

LinearAlgebra[QRDecomposition]

Student[LinearAlgebra]

Student[LinearAlgebra][GramSchmidt]

Student[LinearAlgebra][LUDecomposition]