Finance[Settings] - return default settings
|
Calling Sequence
|
|
Settings(parameter)
Settings(newsettings)
|
|
Parameters
|
|
parameters
|
-
|
businessdayconvention, calendar, compounding, daycounter, dateformat, replications, settlementdays, timesteps, or a list of these names; (optional) parameters of interest
|
newsettings
|
-
|
an equation of the form parameter = value, where parameter is one of businessdayconvention, calendar, compounding, daycounter, dateformat, replications, settlementdays, or timesteps, and value is the new default value, or a list of equations of this type; settings with new default values
|
|
|
|
|
Description
|
|
•
|
The Settings() calling sequence returns a list of equations of the form parameter = value, where parameter runs through all parameters whose default values can be set globally.
|
•
|
The Settings(parameter) calling sequence returns the default values for the specified parameter(s). If the value of the parameter parameter is a single name, the Settings command will return an equation of the form parameter = value where value is the current default value for the corresponding parameter. This value will be used by all commands from the Finance package for which this parameter is relevant. If parameter is a list of names, then a list of equations of the above type will be returned.
|
•
|
The Settings(parameter = value) calling sequence sets the new default value of the parameter parameter and returns the old value.
|
•
|
Finally, the Settings([parameter[1] = value[1], parameter[2] = value[2], `...`, parameter[n] = value[n]]) calling sequence will set the new default values for all of the specified parameters and return the corresponding old default values.
|
|
|
Compatibility
|
|
•
|
The Finance[Settings] command was introduced in Maple 15.
|
|
|
Examples
|
|
>
|
|
Here are the default settings.
>
|
|
| (1) |
Here is the default value of the businessdayconvention parameter.
>
|
|
| (2) |
Here is the default value of the businessdayconvention and dateformat parameters.
>
|
|
| (3) |
Here is an example of a command that uses these defaults.
>
|
|
| (4) |
>
|
|
| (5) |
Set new default values.
>
|
|
| (6) |
Try the new default values.
>
|
|
| (7) |
|
|