plot
create a two-dimensional plot
Calling Sequence
Parameters
Description
Examples
Details
Compatibility
plot(f, x)
plot(f, x=x0..x1)
plot(v1, v2)
f
-
expression in independent variable x
x
independent variable
x0, x1
left and right endpoints of horizontal range
v1, v2
x-coordinates and y-coordinates
The plot(f, x) calling sequence plots the real function f as a function of x.
The plot(f, x=x0..x1) calling sequence plots the real function f over the horizontal real range from x0 to x1.
The plot(v1, v2) calling sequence creates a curve from the points with x-coordinates v1 and y-coordinates v2, where v1 and v2 are lists or Vectors.
Note: The commonly used operator form of the calling sequence and other ways of specifying points are described in the plot/details help page. A complete list of available options can be found in the plot/options help page.
Types of Plots
For a pictorial listing of the available types of plots, as well as other resources for plotting, see the Plotting Guide.
Note: This guide is only available in the Standard interface.
Interactive Plot Builder
Maple includes the Interactive Plot Builder, which provides a point-and-click interface to the plotting functionality including two and three-dimensional plots, animations, and interactive plots with sliders.
To launch the Plot Builder, run the PlotBuilder command. You can also launch the Plot Builder in the Standard Worksheet from the Tools menu. Select Assistants, and then Plot Builder. For more information, see PlotBuilder and Using the Interactive Plot Builder.
Customizing Plots
You can customize displayed plots using the Context Panel. Select the plot and the Context Panel shows items for customizing the plot. These can also be accessed via the Plot menu.
Plots Using Specified Range
plot⁡sin⁡x,x=0..4⁢π
plot⁡1−x2,x=−2..2
Plots Without Specified Range
If no range is specified, Maple tries to determine a reasonable domain to plot the expression. For trigonometric plots, Maple will often use the range −2⁢π..2⁢π.
plot⁡sin⁡t1+exp⁡t2,t
For low degree polynomials, Maple ensures that the axis of symmetry of the graph is in the center of the plot.
plot⁡x3+5⁢x2−10⁢x
Plot Multiple Functions on the Same Graph
plot⁡1,x,x2,x=−2..2
plot⁡ln⁡x,sqrt⁡x,exp⁡x,x=−2..2,color=Red,Green,Blue
Point Plots
plot⁡Vector⁡1,3,4,6,Vector⁡8,6,2,5,style=point,symbol=asterisk,color=Blue
plot⁡1,2,3,4,5,6|6,5,4,3,2,1,style=point
Interactive Plotting
The PlotBuilder command lets you build and display plots interactively. To try it, run the following command in a worksheet and then click the area immediately below the command. Options for selecting the plot type and customizing the plot appear in the panel to the right of the Maple window.
PlotBuilder⁡abs⁡cosh⁡t5−2+sin⁡t210
The command to create the plot from the Plotting Guide is:
plot⁡cos⁡2⁢x−π23+2⁢sin⁡x2,x=0..π
For detailed information including:
Plotting multiple functions
Parametric plots
Plotting functions defined as procedures
Point plots
Specifying plot options in the calling sequence, including color, coordinate system, and title
Discontinuities
Specifying a vertical range
Using different interfaces and output devices
see the plot/details help page.
The plot command was updated in Maple 2017.
See Also
2-D Plot Toolbar
plot/options
plot3d
PlotComponent
plots[animate]
Plotting Guide
Using the Interactive Plot Builder
Download Help Document