[求助]请问怎样让符号表达式计算出值来
比如:<br>symsx1 x2;<br>
y=x1.^2+x2.^2+4*x1+5*x2+3*x1*x2;<br>
如何计算出 x1=2;x2=4 时 y 的值?<br>
求答!!!<br>
回复:(yaugkeer)[求助]请问怎样让符号表达式计算出...
两种办法<BR><BR>第一种:<BR>symsx1 x2;<BR>y=x1.^2+x2.^2+4*x1+5*x2+3*x1*x2;<BR>f=inline(y);<BR>f(2,4)<BR><BR>第二种:<BR>symsx1 x2;<BR>y=x1.^2+x2.^2+4*x1+5*x2+3*x1*x2;<BR>x1=2;x2=4;<BR>subs(y)回复:(happy)回复:(yaugkeer)[求助]请问怎样让符...
谢谢!
页:
[1]