Try to solve System of Linear Equations
3 次查看(过去 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
0 个评论
采纳的回答
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)
.
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!