Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 434 Bytes

README.md

File metadata and controls

12 lines (12 loc) · 434 Bytes

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.