ezplot - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


MTM

  

ezplot

  

create a 2D plot

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ezplot(f)

ezplot(f,[xmin,xmax])

ezplot(f,[xmin,xmax,ymin,ymax])

ezplot(f,g)

ezplot(f,g,[tmin,tmax])

Parameters

f, g

-

algebraic expression

xmin, xmax, ymin, ymax, tmin, tmax

-

(optional) numeric

Description

• 

The ezplot(f) calling sequence plots the expression f.

• 

xmin and xmax denote the left and right endpoints of the horizontal range.  When omitted, the default range is 0 .. 2*Pi.  ymin and ymax denote the vertical endpoints.

• 

When two expressions are given as the first two arguments in the ezplot calling sequence, an plots[implicitplot] of f(t) and g(t) is generated.

• 

The default range of t when tmin and tmax are not specified is 0 .. 2*Pi.

• 

When f or g are not functions of x, y, or t, indets is used to find the indeterminates.  The range limits correspond to the order of alphabetically sorted indeterminates.  

Examples

> 

with⁡MTM:

> 

ezplot⁡cos⁡x2+sin⁡2⁢x

> 

ezplot⁡cos⁡x2+sin⁡2⁢x,0,4⁢π

> 

ezplot⁡x2+y2=1

> 

ezplot⁡x2+y2=1,−1.1,1.1

> 

ezplot⁡sin⁡t,cos⁡t

> 

ezplot⁡sin⁡t,cos⁡t,0,π

> 

ezplot⁡t2−1t2+1,2⁢tt2+1,−∞,∞

See Also

MTM[ezcontour]

MTM[ezmesh]

MTM[ezmeshc]

MTM[ezplot3]

MTM[ezpolar]

MTM[ezsurf]

MTM[ezsurfc]

plots[implicitplot]

indets

plot