How to solve a set of symbolic equations for the same variable?

1 次查看(过去 30 天)
Is there a way to make the following work and solve the following set of symbolic equations for the same variable and save the output in an array?
syms x a
eqns = [a==x+2, a==5*x];
xvalues = vpasolve( subs(eqns,a,[1,2]) , [x,x] );

回答(1 个)

fouad koudsi
fouad koudsi 2021-1-7
Becasue you hava two equations with two unknowns (x & a), so you will not need to substitute any value for a:
code:
syms x a
eqns = [a==x+2 a==5*x]
[xsol asol]=solve(eqns,[x a])
  1 个评论
Diaa
Diaa 2021-1-7
It accidentally happens to have two equations of two variables in my question, but how about that?
syms x a
eqns = [a==5*x];
xvalues = vpasolve( subs(eqns,a,[1,2,3,4]) , repel(x,4) );

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by