Jump to content

Linear Algebra and the C Language/a0b2

From Wikibooks, open books for an open world


QR Decomposition:

[edit | edit source]

In linear algebra, a QR decomposition, also known as a QR factorization or QU factorization, is a decomposition of a matrix A into a product A = QR of an orthonormal matrix Q and an upper triangular matrix R... Wikipedia: QR Decomposition

The function

[edit | edit source]

QR_mR(A,Q,R);

Code study

[edit | edit source]

The code