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
plottools[transform] - generate procedure to transform plots
Calling Sequence
transform(f)
Parameters
f
-
procedure
Description
The transform command generates a procedure that can be used to change plot data structures by applying the procedure f to all the points in the plot structure.
The procedure f represents a mapping
where m and n can take values 2 or 3. The procedure must take as input m arguments and output a list of n components.
Examples of the use of this command include embedding two-dimensional plots into three-dimensional space, changing coordinate systems or transforming curves in the complex plane into the Riemann Sphere.
The result of a call to transform is a procedure that takes a 2-D or 3-D plot data structure as parameter. You can assign the procedure to a variable, and apply the procedure to various plots. For more information about plot data structures, see plot/structure.
The transform command is usually used with [m, n] equal to [2, 2], [2, 3], or [3, 3]. It returns a transformation procedure in the case where m is 3 and n is 2. However, this procedure works only on those 3-D plot objects that have 2-D counterparts.
Several commands in the plottools package can transform plots. For a list, see the plottools help page. The plots[changecoords] and plots[display] commands can also be used to transform plots.
If the transform command is applied to a shape, such as an arrow, the polygons that make up the shape may not render correctly when all of the points in a plot structure are transformed. To create a shape based on transformed coordinates, it is recommended that you transform the coordinates and then generate the shape from those coordinates.
Examples
Draw contour plots onto axes of 3-D plots.
Change coordinate systems.
See Also
plot/structure, plot3d, plots[changecoords], plots[contourplot], plots[display]
Download Help Document