Qurak

Plot functions of one variable

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

第 1 步
Plot[Sin[x], {x, 0, 2Pi}]
输出
-Graphics-
第 2 步
Plot[{x, Sin[x], Sqrt[x]}, {x, 0, 2Pi}]
输出
-Graphics-
第 3 步
LogPlot[E ^ x ^ 2, {x, 1, 5}]
输出
-Graphics-
第 4 步
LogLinearPlot[Tanh[x], {x, 1, 50}]
输出
-Graphics-
第 5 步
LogLogPlot[E ^ x ^ 2, {x, 1, 5}]
输出
-Graphics-
第 6 步
ParametricPlot[{2Sin[t], Cos[t]}, {t, 0, 2Pi}]
输出
-Graphics-
第 7 步
ParametricPlot3D[{5Cos[u], 5Sin[u], u + Sin[u]}, {u, -2Pi, 2Pi}]
输出
-Graphics3D-
第 8 步
PolarPlot[Cos[t] ^ 2, {t, 0, 2Pi}]
输出
-Graphics-
第 9 步
ContourPlot[x ^ 3 + x y ^ 2 + y == 0, {x, -1, 1}, {y, -10, 10}]
输出
-Graphics-

用到的函数

相关操作示例

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