Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
convert/local - convert an expression to a local name
Calling Sequence
convert(e, '`local`')
Parameters
e
-
expression; name, string, or symbol
Description
An expression e (typically itself a symbol or string) can be converted to a local name using the convert( e, '`local`' ) calling sequence. The expression returned is of type symbol, and is guaranteed to be unequal to any name at the same scope in which the call is made. If the expression e is a symbol, then the symbol returned by this conversion has the same external representation as e, but is distinct from e. (See the examples.)
Note that, because it is a Maple keyword, the name local must be enclosed in left single quotes, as demonstrated by the examples below.
Examples
p := proc() local t; evalb( t = convert( t, '`local`' ) ) end proc;
Even when called on the same argument within the same scope, distinct calls yield distinct names.
q := proc() local t; evalb( convert( t, '`local`' ) = convert( t, '`local`' ) ) end proc:
This is also true for module scopes.
m := module() export e, try1, try2; local t; try1 := proc() evalb( e = convert( e, '`local`' ) ) end proc; try2 := proc() evalb( t = convert( t, '`local`' ) ) end proc; end module:
This facility can be used to generate a collection of distinct objects all of which look the same.
See Also
convert, keyword, name, procedure, type/name, type/symbol
Download Help Document