QR decomposition can be used to solve for systems. However, this is not as computationally efficient as LU decomposition and costs about 3n2 flops.
It solve for x by first multiplying b by the transpose of Q then solving for the result.
QRx=b
Rx=Q^T b
A column major decomposition is used in this solver.
@author Peter Abeles
|
|
|
|
|
|
|
|