Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
plots[coordplot] - plotting of 2-D coordinate systems
Calling Sequence
coordplot(coord, rangelist, eqns)
Parameters
coord
-
name of the coordinate system to plot
rangelist
coordinate ranges
eqns
optional equations
Description
The plots[coordplot] function plots "graph paper" of the two dimensional coordinate systems currently supported in Maple. The 2-D plane is divided into a grid of lines of constant value, which are then mapped into the Cartesian plane by way of the coordinate transformation for the specified system coord. See coords for details of each of the coordinate systems available.
Certain default values are associated with each coordinate system, in order to present better quality results. To see these default values, set infolevel[coordplot] to 2. All of these default values may be overridden by the optional equations (see below).
The available coordinate systems are: bipolar, cardioid, cartesian, cassinian, elliptic, hyperbolic, invcassinian, invelliptic, logarithmic, logcosh, maxwell, parabolic, polar, rose, and tangent.
See addcoords for information on adding further coordinate systems and associated coordplot information (defaults).
rangelist is a list of two real ranges, one each for the two coordinate variables. It must be specified for coordinate systems that do not have previously stored default information.
The optional equations eqns consist of the following, in addition to or in place of the standard plot options:
'color'
= color_list
'grid'
= grid_list
'labeling'
= label_type
'linestyle'
= style_list
'view'
= view_range
colour, color = color_list
color_list should be a list of two names, each name indicating one of the colors currently supported in plot[color]. The default is [red, blue].
grid = [integer1, integer2]
grid is a two element list of integers. The first integer value indicates the number of grid lines in the x-direction, the second indicates the number used in the y-direction. Hence, the original plane will be divided into a grid of integer1 x integer2 lines, and mapped by the coordinate transform into the Cartesian plane. The default value depends on the coordinate system.
labeling or labelling = label_type
label_type may be true, false, front, middle, or rear. Labeling will result in the constant value associated with each line to be printed at one of three positions along the line. The default is for labeling to be off (false).
linestyle = [value1, value2]
linestyle is a list of two values. Each of value1 and value2 can be one of the line style names describe in the plot/option help page.
view = [a1..a2, b1..b2]
view is a list of two real ranges. It is used to specify the size of the view window used to display the coordinate plot. Each coordinate system has an associated list of view values which may be changed by this option.
The command with(plots,coordplot) allows the use of the abbreviated form of this command.
Examples
If infolevel is set to a greater integer (possible settings are 1 through 5), more detailed information is about the computation method is displayed.
plots/coordplot: u range: -2 .. 2 plots/coordplot: v range: 0 .. 2 plots/coordplot: grid: [ 13 13 ] plots/coordplot: view: [0 .. 3, 0 .. 3] plots/coordplot: labelling: false
The command to create the plot from the Plotting Guide is
plots/coordplot: u range: 0 .. 3/2 plots/coordplot: v range: 0 .. 2*Pi plots/coordplot: grid: [ 7 13 ] plots/coordplot: view: [DEFAULT, DEFAULT] plots/coordplot: labelling: false
See Also
addcoords, coords, infolevel, plot/coords, plot/option, plot/structure, plots[changecoords], plots[coordplot3d]
Download Help Document