Skip to content

sjhstone/QR-decomposition

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

QR Decomposition

This repository holds code pieces that implements QR factorization routines.

Such routines decompose some matrix $A \in \mathbb{R}^{m \times n}$ into an orthonormal matrix $Q$ and an upper-triangular matrix $R$ such that $A = QR$.

Implemented Algorithms

Gram-Schmidt orthogonalization

For each column of $A$, form a new basis by subtracting the column vector's projection onto all previously found bases.

Givens rotation

Rotate two rows per inner iteration to eliminate non-zero elements below the diagonal in $R$. The implementation uses in-place modification of Givens rotation matrix $G$ for better performance.

Householder transformation

Find the hyperplane that can induce a reflected vector of column vectors in $A$ that has no non-zero element below the diagonal in $R$.

About

Gram-Schmidt, Givens and Householder

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages