Parametric Plots
Calling Sequence
Parameters
Description
Examples
plot([x(t), y(t), t=range of t], h, v, options)
[x, y, range]
-
parametric specifications
h
horizontal range
v
vertical range
options
(optional) plot options; see plot/options
A parametric plot is specified by a list of three items; the first two are real functions of a parameter, the third is the range for the parameter.
When used in conjunction with the option coords=polar, parametric plots produces polar plots.
Several parametric plots can be plotted on the same graph, by providing a set or a list of parametric plots as the first argument. For more information, see plot.
plot⁡sin⁡t,cos⁡t,t=0..π
plot⁡x2,x,x=0..3⁢π,−8..8,−10..10,coords=polar
plot⁡t2−1t2+1,2⁢tt2+1,t=−∞..∞
The command to create the plot from the Plotting Guide is
plot⁡2⁢cos⁡s,sin⁡s,s=0..2⁢π,cos⁡t,sin⁡t,t=0..2⁢π,color=blue,yellow
See Also
plot/options
plots[polarplot]
VectorCalculus[SpaceCurve]
Download Help Document