Overview - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Graphics : 2-D : plot : Overview

plot

create a two-dimensional plot

 

Calling Sequence

Parameters

Description

Examples

Details

Compatibility

Calling Sequence

plot(f, x)

plot(f, x=x0..x1)

plot(v1, v2)

Parameters

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

Description

• 

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.

Examples

Plots Using Specified Range

plotsinx,x=0..4π

plot1x2,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π.

plotsint1+expt2,t

  

For low degree polynomials, Maple ensures that the axis of symmetry of the graph is in the center of the plot.

plotx3+5x210x

Plot Multiple Functions on the Same Graph

plot1,x,x2,x=2..2

plotlnx,sqrtx,expx,x=2..2,color=Red,Green,Blue

Point Plots

plotVector1,3,4,6,Vector8,6,2,5,style=point,symbol=asterisk,color=Blue

plot1,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.

PlotBuilderabscosht52+sint210

  

The command to create the plot from the Plotting Guide is:

plotcos2xπ23+2sinx2,x=0..π

Details

  

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.

Compatibility

• 

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