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
convert/global - convert an expression to a global name
Calling Sequence
convert(e, '`global`', opts)
Parameters
e
-
any Maple object
opts
equation(s) of the form option=value where option is one of expression, assign, reset, or unique; specify options for the conversion
Description
The convert(e, `global`) function converts any local symbols in the expression e to global symbols.
Note that, because the name global is a Maple keyword, it must be enclosed in backquotes, as demonstrated by the examples below.
The opts argument can contain one or more of the following equations that set how symbols are converted to globals.
assign = truefalse
If this option is set to true, then if a local variable is assigned, the global will be assigned to the same object.
expression = truefalse
If this option is set to true, then the entire expression will be converted into a global variable and all other options will be ignored.
reset = truefalse
If this option is set to true, then any new globals generated by the option unique will be reset, otherwise, on subsequent calls, the attached integers will grow in size. This option is only useful in conjunction with the option unique.
unique = truefalse
If this option is set to true, then if two local variables have the same appearance, they will be converted to different global variables by appending digits to the end of subsequent global variable.
Examples
assign x, y, z to three locals: a, a, and b
assign a procedure to the local a
assign(x, proc(s) sin(s) + s end);
See Also
convert, convert/local, convert/symbol, name, procedure, type/name, type/symbol
Download Help Document