Qurak

Plot functions of two variables

How-to 5 steps, run in order in one session. Every step was executed against the engine and the output below is what it produced.

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

Functions used

Related recipes

All recipes · Function reference · Use this from an MCP client