在Mathematica中使用Manipulate funvtion:

时间:2016-12-30 22:35:45

标签: wolfram-mathematica

如何扩展滑块变量的范围,以及“操纵”#39;功能?在此编码中' n' &= 39;操纵'之前和之后= 10函数但在绘图程序中可以在-10和+10之间变化。

n = 10;
Manipulate[
   Plot[Sin[n*x], {x, -5, 5}], {n, -10, 10, 1, Appearance -> "Labeled"}]
   Print["n = ", n]   

提前感谢所有贡献者。 诺曼

1 个答案:

答案 0 :(得分:1)

在Manipulate中为控制变量使用另一个变量名。

n = 10;
Manipulate[
 Plot[Sin[(n = m)*x], {x, -5, 5}], {{m, n}, -10, 10, 1, Appearance -> "Labeled"}]
Print["n = ", Dynamic[n]]