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[complexplot3d] - create a 3-D complex plot
Calling Sequence
complexplot3d([expr1, expr2], x=a..b, y=c..d)
complexplot3d([f1, f2], a.. b, c.. d)
complexplot3d(expr3, z=a + b*I..c + d*I)
complexplot3d(f2, a + b*I..c + d*I)
Parameters
expr1, expr2
-
algebraic; expressions in parameters x and y
f1, f2
procedures; functions to be plotted
expr3
algebraic; expression in parameter z
a, b, c, d
realcons; endpoints of parameter ranges
Description
The four different calling sequences to the complexplot3d function above all define plots in three space for expressions or procedures mapping
For 2-D complex plots, see plots/complexplot.
For plotting functions from to complexplot3d plots the first component while coloring the graphic using the second component.
For plotting functions from C to C complexplot3d plots the magnitude of the function while coloring the resulting surface using the argument of the function.
The first two calls plot expressions and procedures, respectively, from to . In the second case f1 and f2 take two arguments and return a real value. The form of the range specifications determine whether an expression or a procedure is to be plotted. The last two calls plot expressions and procedures, respectively, from C to C.
The range components a, b, c, and d must evaluate to real constants. Note that operator notation is used in the second and fourth calls, that is, the procedure name is given without parameters specified, and the ranges must be given simply in the form a..b, rather than as an equation.
Any additional arguments are interpreted as options as described in the plot3d/options help page. For example, the option where m and n are positive integers specifies that the plot is to be constructed on an m by n grid instead of on the default 25 by 25 grid.
Examples
Plot a complex procedure:
Plot an expression from to , where the plot is of the first component colored by the second component:
Repeat the previous example using operator form.
Plot an image created from Newton's iteration:
Plot , where and , in cylindrical coordinates, with r ranging from 0 to 10 and theta from 0 to .
g := proc(z) local w; w := Re(z)*exp(Im(z)*I); w/(exp(w)-1) end proc:
The command to create the plot from the Plotting Guide is
See Also
plot3d[option], plots/complexplot
Download Help Document