为什么在Mathematica 7.0中输入如下命令,不能正确显示动画图形?Do[Plot[x^2 + Sin[c*x],{x,-3,3},PlotRange -> {-1,5}],{c,1,5,1/3}]

来源:学生作业帮助网 编辑:六六作业网 时间:2024/05/19 08:27:46
为什么在Mathematica7.0中输入如下命令,不能正确显示动画图形?Do[Plot[x^2+Sin[c*x],{x,-3,3},PlotRange->{-1,5}],{c,1,5,1/3}]为什

为什么在Mathematica 7.0中输入如下命令,不能正确显示动画图形?Do[Plot[x^2 + Sin[c*x],{x,-3,3},PlotRange -> {-1,5}],{c,1,5,1/3}]
为什么在Mathematica 7.0中输入如下命令,不能正确显示动画图形?
Do[Plot[x^2 + Sin[c*x],{x,-3,3},PlotRange -> {-1,5}],{c,1,5,
1/3}]

为什么在Mathematica 7.0中输入如下命令,不能正确显示动画图形?Do[Plot[x^2 + Sin[c*x],{x,-3,3},PlotRange -> {-1,5}],{c,1,5,1/3}]
你用Manipulate做一下
Manipulate[
Plot[x^2 + Sin[c*x], {x, -3, 3}, PlotRange -> {-1, 5}], {c, 1, 5,
1/3}]