Skip to content

Python Code to find QR factorization of an m x n matrix

Notifications You must be signed in to change notification settings

ashcode028/QR-Factorisation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

QR-factorization

Program in Python to find the QR factorization of an m × n matrix. A = QR.

  • Q is a matrix which has the property that QTQ = I
  • R is triangular.

Input

  • m and n
  • Entries of the matrix A. code

Output

The output of the program is m × n matrix Q and n × n matrix R such that A = QR.

About

Python Code to find QR factorization of an m x n matrix

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages