Tagged Questions

0
votes
1answer
507 views

Which one is faster / more stable: inverting matrix or solving three systems of linear equations with multiple right hand sides?

I have two equations I'm solving on each recursive round: X = A - inv(B) * Y * inv(B), X = X + A' * inv(B) * A, I solve the problem this way: C = inv(B)Y <=> BC = Y, solve C. D = Cinv(B) <=> ...