Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 458 Bytes

README.md

File metadata and controls

7 lines (4 loc) · 458 Bytes

QR_decomposition_C

C implementation of the QR decomposition algorithm.

The code is an adaptation to the needs of the darktable project of the code found here.

The Gram-Schmidt process is used, therefore the input matrice A (mxn) produces the reduced QR form, where Q is mxn and R is nxn. In order to apply this the rank of A has to be n.