level 10
BD1790068527
楼主
一直错误地以为,Plot函数中是不会出现等式形式的。但下边代码却给出了结果:
Manipulate[
Plot[a x + b == 0, {x, -5, 5},
PlotRange -> {{-5, 5}, {-9, 5}}], {a, -3, 6}, {b, -1, 6}]

通过观察我发现Plot[f[x]==0,{x,x1,x2}]等价于Plot[f[x],{x,x1,x2}].
这是什么原因呢?
2014年04月08日 05点04分
1
Manipulate[
Plot[a x + b == 0, {x, -5, 5},
PlotRange -> {{-5, 5}, {-9, 5}}], {a, -3, 6}, {b, -1, 6}]

通过观察我发现Plot[f[x]==0,{x,x1,x2}]等价于Plot[f[x],{x,x1,x2}].这是什么原因呢?