Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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