What is the best factorization algorithm to solve this system? (Best is intended as more stable)
$$ AA^Tx = b $$
x, b vectors
What is the best factorization algorithm to solve this system? (Best is intended as more stable)
$$ AA^Tx = b $$
x, b vectors
Copyright © 2021 JogjaFile Inc.
The matrix product $AA^T$ yields a symmetric and positive semi-definite matrix (assuming that $A$ is real), hence you can use a Cholesky factorization. However, I don't know for sure if this is the "best."