Tagged Questions

13
votes
10answers
3k views

Solving a linear equation

I need to programmatically solve a system of linear equations in C, Objective C, or (if needed) C++. Here's an example of the equations: -44.3940 = a * 50.0 + b * 37.0 + tx-45.3049 = a * 43.0 + ...
6
votes
2answers
245 views

Why permutation matrices are used to swap rows of an array?

What are the advantages of using a permutation matrix to swap rows? Why one would create a permutation matrix and then apply a matrix multiplication, is it easier and more efficient than just swapping ...
3
votes
3answers
220 views

Library for finding any solution of any number of linear equations with any number of variables

I have to finding any solution (there may exist many or none) of any number of given liner equations with any number of variables. In Java. What libraries and method use? What to implement? I want to ...
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
3answers
99 views

Two Unknowns 3 Equations

I have 3 eqns and 2 unknowns Hb and Hbo2, they look like this: Bxy = AB * HB + AB * Hbo2 Rxy = AR * HB + AR * Hbo2 Gxy = AG * HB + AG * Hbo2 Now I have been trying to use a matrix method in order ...