Optional and Default Arguments
Sometimes you may want to set up functions where certain arguments, if omitted, are given "default values". The pattern
x_:v stands for an object that can be omitted, and if so, will be replaced by the default value
v.
This defines a function j with a required argument x, and optional arguments y and z, with default values 1 and 2, respectively. |
The default value of z is used here.
| Out[2]= |  |
|
Now the default values of both y and z are used.
| Out[3]= |  |
|
| x_:v | an expression which, if omitted, is taken to have default value v |
| x_h:v | an expression with head h and default value v |
| x_. | an expression with a built-in default value |
Pattern objects with default values.
Some common
Mathematica functions have built-in default values for their arguments. In such cases, you need not explicitly give the default value in
x_:v, but instead you can use the more convenient notation
x_. in which a built-in default value is assumed.
| x_+y_. | default for y is 0 |
| x_y_. | default for y is 1 |
| x_^y_. | default for y is 1 |
Some patterns with optional pieces.
Here a matches the pattern x_+y_. with y taken to have the default value 0.
| Out[4]= |  |
|
Because
Plus is a flat function, a pattern such as
x_+y_ can match a sum with any number of terms. This pattern cannot, however, match a single term such as
a. However, the pattern
x_+y_. contains an optional piece, and can match either an explicit sum of terms in which both
x_ and
y_ appear, or a single term
x_, with
y taken to be
0.
Using constructs such as
x_., you can easily construct single patterns that match expressions with several different structures. This is particularly useful when you want to match several mathematically equal forms that do not have the same structure.
The pattern matches g[a^2], but not g[a+b].
| Out[5]= |  |
|
By giving a pattern in which the exponent is optional, you can match both cases.
| Out[6]= |  |
|
The pattern a_.+b_.x_ matches any linear function of x_. |
In this case, b 1.
| Out[8]= |  |
|
Here b 1 and a 0.
| Out[9]= |  |
|
Standard
Mathematica functions such as
Plus and
Times have built-in default values for their arguments. You can also set up defaults for your own functions, as described in "
Patterns".
Sometimes it is convenient not to assign a default value to an optional argument; such arguments can be specified with the help of
PatternSequence[].
Optional argument without a default value.
The pattern matches an optional second argument of 2, without a default value.
| Out[10]= |  |
|