|
Calling Sequence
|
|
MakeFunction(expr, x, y, ..)
MakeFunction(expr, x, y, .., options)
MakeFunction(expr, l)
MakeFunction(expr, l, options)
unapply(expr, x, y, ..)
unapply(expr, x, y, .., options)
unapply(expr, l)
unapply(expr, l, options)
|
|
Parameters
|
|
expr
|
-
|
expression
|
x, y, ..
|
-
|
variable names, or names with type specifiers
|
l
|
-
|
list of variable names
|
options
|
-
|
list of optional arguments
|
|
|
|
|
Options
|
|
|
The following optional arguments are available.
|
|
For this option variables must be a set or list of variable names, or a single variable name, all of which must correspond to a variable in the input for MakeFunction (that is, in either the list or the specified variable names). With this option, MakeFunction constructs an operator that returns unevaluated whenever the specified variables do not evaluate to numeric values.
|
|
Note: This option cannot be used for inputs containing derivatives, such as or structures.
|
|
Providing the optional argument numeric is simply a shortcut for numeric=variables.
|
|
This option must be a keyword, or list or set of keywords. The MakeFunction command constructs the operator with the specified keywords as options. By default, the options {operator,arrow} are used, but any of arrow, inline, operator, remember, or system are valid keywords.
|
•
|
The MakeFunction command implements the lambda-expressions of lambda calculus.
|
•
|
The unapply command is an alias for MakeFunction; the two commands are the same in all respects.
|
|
|
Description
|
|
•
|
The result of MakeFunction(expr, x) is a functional operator. Applying this operator to x gives the original expression.
|
•
|
In particular, for a function ,
|
•
|
To construct a multi-argument operator from a multi-variate expression, list all the variables as arguments to MakeFunction or explicitly put all variables in a list and pass it as the second argument to MakeFunction.
|
•
|
Use the MakeFunction command when constructing an operator using contents of variables or evaluated expressions.
|
•
|
The variable names may be simple names of type symbol (e.g., x, y, z), or names with type specifiers using :: (e.g, x::numeric, y::integer, z::float).
|
|
|
Examples
|
|
>
|
|
>
|
|
>
|
|
Example of MakeFunction with the numeric option:
>
|
|
| (11) |
This behavior is different from specification of the type with the variable
>
|
|
Example of MakeFunction with specified options:
>
|
f := proc() lprint(`called`); 0; end proc;
|
| (16) |
>
|
|
|
|
References
|
|
|
Gonnet, G.H. "An Implementation of Operators for Symbolic Algebra Systems" SYMSAC. July 1986.
|
|
|
Compatibility
|
|
•
|
The MakeFunction command was introduced in Maple 2023.
|
|
|
|