conformal - 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 : conformal

plots

  

conformal

  

conformal plot of a complex function

  

conformal3d

  

conformal plot of a complex function on the Riemann sphere

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

conformal(F, r1 options)

conformal(F, r1, r2, options)

conformal3d(F, r1, options)

Parameters

F

-

complex procedure or expression

r1, r2

-

ranges of the form a..b, or name=a..b

options

-

(optional) plot options; see plot/options and plot3d/options

Description

• 

A conformal plot of a complex function F(z) from a+bi to c+di maps a two-dimensional grid axc, byd  from the plane into a second (curved) grid determined by the images of the original gridlines under F.  The result is a set of curves in the plane, which has the property that they also intersect at right angles at the points where F is analytic.

• 

The conformal command produces a conformal plot of a complex function F, where F can be an expression or a procedure.  The first range, r1, defines the gridlines in the plane that are to be conformally mapped via the complex function F. The second range, r2, is optional and defines the view of the plot.  The default view includes the full range of the conformal lines.

• 

The conformal3d command works in the same way as the conformal command, except that it plots F on the Riemann sphere, and it accepts only the first range parameter.

• 

Remaining arguments are interpreted as options which are specified as equations of the form option = value.

• 

To change the number of gridlines displayed, use the grid=[m, n] option, with m and n integers. This option specifies the number of gridlines in both x and y directions that are to be mapped conformally.  The default is 11 lines in either direction, making an 11 by 11 grid.

• 

To change the number of points sampled, use the numxy=[m, n] option, with m and n integers.  This option specifies the number of points that are to be plotted in each gridline, with m points in the x direction and n points in the y direction. The default is 21 points in each direction.

• 

To specify the color of the gridlines, use the color=c option, where c is a valid color as described on the plot/color help page.  The value c can also be a list of two colors; in this case, each color is used for gridlines in a single direction. With the conformal3d command, the spherecolor=c option can also be used to specify the color of the sphere.

• 

To map a grid defined in a different coordinate system, use the coords=t option, where t is one of the coordinate systems listed in the plot/coords and plot3d/coords help pages.  With this option, the gridlines in the default Cartesian coordinate system are first mapped to the new coordinate system and then the conformal mapping is applied.

• 

There are a number of other standard 2-D and 3-D plot options that are available with the conformal and conformal3d commands.  These include specifications for style, and the number of horizontal and vertical tickmarks.  For more details, see plot/options and plot3d/options.

Examples

withplots:

conformalz2,z=0..2+2I

When r2 is given, it specifies the view.  That is, the following produces the same plot as conformal(1/z, z=-1-I..1+I, view=-6-6*I..6+6*I, color=magenta, numxy=[80,80]):

conformal1z,z=1I..1+I,66I..6+6I,color=magenta,numxy=80,80

conformalcosz,z=0..2π+πI,grid=8,8,numxy=50,50

conformalz3,z=0..2+2I,tickmarks=3,6

conformal2z12z,z=22I..2+2I,22I..2+2I

conformalz+1z,z=33I..3+3I,33I..3+3I

conformalzIz+I,z=33I..3+3I,44I..4+4I,grid=30,30,style=line

conformalsqrtz,z=πI2..1+πI2,coords=polar

conformal3dcosz,z=0..2π+Iπ

The commands to create the plots from the Plotting Guide are

conformalz3,z=1I..1+I

conformal3dcosz,z=0..2π+Iπ,color=DeepPink,Yellow,spherecolor=black

See Also

plot

plot/color

plot/coords

plot/options

plot3d/coords

plot3d/options

plots

plots[display]