How to | Plot Parametric Functions
How to | Plot Parametric Functions
The Wolfram Language can plot parametric functions in both two and three dimensions. Use a parametric plot when you can express the
and
or
,
, and
coordinates at each point on your curve as a function of one or more parameters.
Plot the parametric curve
where the parameter
varies from
to
:
ParametricPlot[{2 Sin[t], Cos[t]}, {t, 0, 2 Pi}]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}]