Qurak

Use built-in gamepad support

操作指南 4 步,在同一个会话中按顺序运行。每一步都在引擎上执行过,下面的输出就是它实际产生的。

第 1 步
Manipulate[Plot[Sin[n x], {x, 0, 4 Pi}], {n, 1, 10}]
输出
Manipulate[Plot[Sin[n*x], {x, 0, 4*Pi}], {n, 1, 10}]
第 2 步
Plot3D[Sin[x y], {x, 0, 3}, {y, 0, 3}]
输出
-Graphics3D-
第 3 步
Manipulate[Plot[Sin[n x] + Sin[m x], {x, 0, 4 Pi}, PlotRange -> 2], {n, 1, 10}, {m, 1, 10}]
输出
Manipulate[Plot[Sin[n*x] + Sin[m*x], {x, 0, 4*Pi}, PlotRange -> 2], {n, 1, 10}, {m, 1, 10}]
第 4 步
Manipulate[Plot[Sin[n x] + Sin[m x], {x, 0, 4 Pi}, PlotRange -> 2], "X1" -> {n, 1, 10}, "X2" -> {m, 1, 10}]
输出
Manipulate[Plot[Sin[n*x] + Sin[m*x], {x, 0, 4*Pi}, PlotRange -> 2], X1 -> {n, 1, 10}, X2 -> {m, 1, 10}]

用到的函数

相关操作示例

全部操作示例 · 函数参考 · 从 MCP 客户端使用