linear equation solve by solve command
2 次查看(过去 30 天)
显示 更早的评论
i want to show the value of x in terms of y & z
syms x y z
a=x + y +z ==4
b=2*x -3*y +4*z == 33
c=3*x -2*y -2*z ==2
d=[a,b,c]
e=solve(d,[x,y,z])
xvalue=e.x
yvalue=e.y
zvalue=e.z
3 个评论
Torsten
2022-10-11
The value of x is 2, the value of y is -3 and the value of z is 5.
Nothing more to see here.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!