liziheng 发表于 2009-1-23 22:53

[求助]一程序无法得到理想结果

clear all
clc
syms a x;
y=a.*x.^2-7.*x+10;
a=1;
d=solve(y);
但不能输出d=1,而是d=1/a

[ 本帖最后由 ChaChing 于 2009-1-24 11:59 编辑 ]

cooller 发表于 2009-1-24 09:00

使用numeric(d)。

ChaChing 发表于 2009-1-24 12:01

回复 楼主 liziheng 的帖子

y=a.*x.^2-7.*x+10; 好像无需点乘!
d=solve(ss); 好像笔误应该为d=solve(y)! 帮编辑了!
楼主是要求y的数值解吗? 试试 subs(d)

ChaChing 发表于 2009-1-24 12:07

回复 沙发 cooller 的帖子

numeric(d)好像不行!

liziheng 发表于 2009-1-29 10:08

非常感谢cooller和ChaChing两位的热心帮助,感觉subs(d)能行!
页: [1]
查看完整版本: [求助]一程序无法得到理想结果