Tagged Questions
1
vote
7answers
3k views
How can I solve a system of linear equations in Excel?
I have a system of 22 linear equations (exactly 22 equations and 22 unknowns) which are dynamically generated in an Excel spreadsheet. Is there a way to have Excel solve the system and produce a value ...
0
votes
1answer
492 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) <=> ...