How to | Plot Functions of Two Variables
Use ParametricPlot3D to plot the surface defined by
:
ParametricPlot3D[{r Cos[t], r Sin[t], Log[r ^ (1 / 2)]}, {r, 0.1, 1}, {t, 0, 2Pi}]Use ContourPlot3D to plot a function implicitly defined by
:
ContourPlot3D[x ^ 2 + y ^ 2 - z ^ 2 == 0, {x, -2, 2}, {y, -2, 2}, {z, -2, 2}]