Matrix QR Decomposition

QR decomposition

As far as I know, any matrix can be QR decomposed.
A ∈ R m × n A \in \mathbb{R}^{m \times n}ARm × n , then AAcan beA is decomposed intoQ, RQ, RQR A = Q R A=QR A=QR ,
there are two decomposition methods,

  1. Complete QR decomposition
    where Q ∈ R m × m Q \in \mathbb{R}^{m \times m}QRm×m R ∈ R m × n R \in \mathbb{R}^{m \times n} RRm × n .
    insert image description here
    Among them, the multiplication of the part of the dashed box is all 0, which is meaningless, and we can simplify and omit it.

  2. Reduced QR decomposition
    Q ∈ R m × k Q \in \mathbb{R}^{m \times k}QRm×k R ∈ R k × n R \in \mathbb{R}^{k \times n} RRk × n . wherek = min ( m , n ) k=min(m,n)k=min(m,n )
    insert image description here
    I understand that this is enough, and there are three solution methods, which will be supplemented later if necessary.

Guess you like

Origin blog.csdn.net/REstrat/article/details/127197682