where
is a lower triangular matrix, while
is an upper triangular matrix.
It is much easier to compute the inverse of a triangular matrix and there exist numerical solutions. Then the original matrix inverse is computed simply by multiplying the two inverses as
As bonus, the determinant is also much easier to compute.
One can also use complex matrices, and just use a conjugate-transpose instead of transpose alone.
转自:http://mobiusfunction.wordpress.com/2010/08/07/the-inverse-of-a-triangular-matrix/
本文探讨了Cholesky分解在求解特殊类型矩阵(如Hermitian正定矩阵)逆运算的问题上简化复杂度的方法。通过将目标矩阵分解为下三角矩阵和上三角矩阵的乘积,使得计算逆矩阵变得更为简便。此外,文章还讨论了如何在复数矩阵中使用共轭转置,并介绍了Cholesky分解在实际应用中的优势。
8511






