Try to solve System of Linear Equations

1 次查看(过去 30 天)
Hi
I'm trying to solve this matrix to find x and y, however, it didn't work. Please help
syms x y
eqn1 = x+y == 250;
eqn2= 10*x+45*y ==24000;
eqn3 = x+3*y ==3360;
eqn4 = 10*x+15*y ==1440;
sol = solve([eqn1, eqn2, eqn3, eqn4], [x, y]);
xSol = sol.x
ySol = sol.y

采纳的回答

Star Strider
Star Strider 2021-4-20
One option:
syms x y
eqn1 = x+y == 250;
eqn2= 10*x+45*y ==24000;
eqn3 = x+3*y ==3360;
eqn4 = 10*x+15*y ==1440;
eqns = [eqn1; eqn2; eqn3; eqn4];
vars = symvar(eqns)
[A,b] = equationsToMatrix(eqns,vars);
B = linsolve(double(A),double(b))
x = B(1)
y = B(2)
.

更多回答(1 个)

David Hill
David Hill 2021-4-20
A=[1 1;10 45;1 3;10 15];
b=[250;24000;3360;1440];
A\b

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

产品


版本

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by