alias
define an abbreviation or denotation
Calling Sequence
Parameters
Description
Thread Safety
Examples
alias(e1, e2, ..., eN)
e1, e2, ..., eN
-
zero or more equations
Mathematics has many special notations and abbreviations. Typically, these notations are found in written statements such as ``Let J denote the Bessel function of the first kind'' or ``Let alpha denote a root of the polynomial x^3-2''. The alias facility allows you to state abbreviations for the longer unique names that Maple uses and, more generally, to give names to arbitrary expressions.
To define F as an alias for fibonacci, use alias(F=fibonacci). To redefine F as an alias for hypergeom, use alias(F=hypergeom). To remove this alias for F, use alias(F=F).
Aliases work as follows. Consider defining alias(J=BesselJ), and then entering J(0, -x). On input the expression J(0, -x) is transformed to BesselJ(0, -x). Maple then evaluates and simplifies this expression as usual. In this example, Maple returns BesselJ(0, x). Finally, on output, BesselJ(0, x) is replaced by J(0, x).
Because aliases are resolved at the time of parsing the original input, they substitute literally, without regard to values of variables and expressions. For example, alias(a[1]=exp(1)) followed by evalf(a[1]) will replace a[1] with exp(1) to give the result 2.718281828, but evalf(a[i]) will not substitute a[i] for its alias even when i=1. This is because a[i] does not literally match a[1].
Aliases defined inside a procedure or other compound statement are not effective for resolving input matches in the body of that statement. This is the case because the current statement is parsed in its entirety before the alias command is evaluated.
The arguments to alias are equations. When alias is called, the equations are evaluated from left to right, but are not subject to existing aliases. Therefore, you cannot define one alias in terms of another. Next, the aliases are defined. Finally, a sequence of all existing aliases is returned as the function value.
An alias may be defined for any Maple object except a string or numerical constant. You may assign to a variable by assigning to its alias. Parameters and local variables are not affected by aliases.
The alias command is thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
Define an alias for the binomial function.
alias⁡C=binomial
C
C⁡4,2
6
C⁡n,m
Redefine C as an alias for cat.
alias⁡C=cat
C⁡C, is no longer an alias for the binomial function.
C is no longer an alias for the binomial function.
Remove the alias for C.
alias⁡C=C
You can define more than one alias in one line.
alias⁡F=F⁡x,Fx=ⅆⅆx⁢F⁡x
F,Fx
∂∂x⁢F
Fx
∂∂x⁢Fx
ⅆ2Fⅆx2
has⁡Fx,x
true
You cannot define one alias in terms of another.
alias⁡Fxx=∂∂x⁢Fx
Error, (in alias) aliases cannot be numeric or string constants
alias⁡α=RootOf⁡x2−2
F,Fx,α
factor⁡x4−4,α
−x+α⁢−x+α⁢x2+2
alias⁡f=g
F,Fx,α,f
f ≔ sin
f≔sin
g⁡Pi
0
See Also
macro
subs
Download Help Document