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
Acceptable Plot Functions
Calling Sequence
plot(f, h, v, options)
Parameters
f
-
function(s) to be plotted
h
horizontal range
v
vertical range
Description
The procedure plot in Maple accepts three function types: a real function in a single variable expressed as an expression, or a Maple procedure, a parametric function, or a list of points. If a procedure is being specified, operator notation must be used, that is, the procedure name given without parameters, and the range specified as simply a..b rather than as an equation.
A parametric function has the form . If the option coords=polar is given, the parametric function is interpreted in polar coordinates. Points will be equally spaced along the interval specified by the range of t in the parametric plot specification. The points will not be evenly spaced according to the specified. The set of lists must contain one undefined variable in it. If each list contained an undefined variable, then a terminal error would occur. Hence, all parametric plots must be parametric with respect to the same variable.
A list of points has the form .
Examples
w:=proc(x) if x<0 then -x elif (x>0) and (x<4) then x else -x+8 end if end proc:
See Also
plot/options, plot/parametric, plots[polarplot]
Download Help Document