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 用戶端使用這個