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[complexplot] - create a 2-D complex plot
Calling Sequence
complexplot(expr, t=a..b, xv, yv, options)
complexplot(f, a..b, xv, yv, options)
complexplot(L, xv, yv, options)
Parameters
expr
-
algebraic; expression in parameter t defining a curve
t
name; curve parameter
f
procedure; procedure in one variable defining a curve
a, b
realcons; endpoints of parameter range
L
list; complex numbers specified as points
xv
(optional) range or name=range; view of horizontal axis
yv
(optional) range or name=range; view of vertical axis
options
(optional) sequence of equations; plot options
Description
The complexplot command creates a 2-D plot displaying complex values, with the x-direction representing the real part and the y-direction representing the imaginary part. The complex function may be given as an algebraic expression or a procedure. Alternatively, a list of points may be provided. For 3-D complex plots, see plots[complexplot3d].
The first calling sequence, complexplot(expr, t=a..b), plots the complex expression expr which is a function of a single real parameter t over the parameter range .
The second calling sequence, complexplot(f, a..b), plots the complex function represented by f, a procedure taking a single real parameter and returning a complex value, over the parameter range . For more information about plotting procedures using operator notation, see plot/function.
The third calling sequence, complexplot(L), plots a list of complex values as points. The points are connected unless the style=point option is given.
For all three calling sequences, additional arguments having the form or v..w may be provided, where u is a name and v and w are real constants. If one such argument is provided, it defines the view of the x-axis. If two are provided, they define the views of the x-axis and y-axis. The name u is used as the axis label if given.
Remaining arguments are interpreted as options as described in the plot/options help page.
Examples
Plot an expression over a parameter range.
Plot a procedure over a parameter range, with a restricted view.
Plot a list of points and display using an x-axis view of 0..10.
The command to create the plot from the Plotting Guide is
See Also
plot, plot/function, plot/options, plots, plots[complexplot3d]
Download Help Document