Qurak

Plot functions of two variables

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

第 1 步
Plot3D[Sin[x] Sin[y] ^ 2, {x, 0, Pi}, {y, 0, Pi}]
输出
-Graphics3D-
第 2 步
Plot3D[{Sin[x] Sin[y] ^ 2, 2 - Sin[x] Sin[y] ^ 2}, {x, 0, Pi}, {y, 0, Pi}]
输出
-Graphics3D-
第 3 步
ParametricPlot3D[{r Cos[t], r Sin[t], Log[r ^ (1 / 2)]}, {r, 0.1, 1}, {t, 0, 2Pi}]
输出
-Graphics3D-
第 4 步
SphericalPlot3D[1, {t, 0, Pi}, {p, 0, 2Pi}]
输出
-Graphics3D-
第 5 步
ContourPlot3D[x ^ 2 + y ^ 2 - z ^ 2 == 0, {x, -2, 2}, {y, -2, 2}, {z, -2, 2}]
输出
-Graphics3D-

用到的函数

相关操作示例

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