How to | Plot Functions of One Variable
Plot the parametric curve defined by
:
ParametricPlot[{2Sin[t], Cos[t]}, {t, 0, 2Pi}]Use ParametricPlot3D to plot the parametric curve defined by
:
ParametricPlot3D[{5Cos[u], 5Sin[u], u + Sin[u]}, {u, -2Pi, 2Pi}]Make a polar plot of the function
:
PolarPlot[Cos[t] ^ 2, {t, 0, 2Pi}]Use ContourPlot to plot an implicitly defined function:
ContourPlot[x ^ 3 + x y ^ 2 + y == 0, {x, -1, 1}, {y, -10, 10}]