QRDecomposition - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

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

> 

with⁡StudentLinearAlgebra:

> 

A≔1,2,3|4,5,6

A≔142536

(1)
> 

Q,R≔QRDecomposition⁡A

Q,R≔14144⁢2121661472121−633⁢1414−2⁢212166,1416⁢14703⁢21700

(2)
> 

Equal⁡Q·R,A

true

(3)

See Also

LinearAlgebra[QRDecomposition]

Student[LinearAlgebra]

Student[LinearAlgebra][GramSchmidt]

Student[LinearAlgebra][LUDecomposition]