Name:
default
default value for some commands.
Library names:
sollya_obj_t sollya_lib_default()
int sollya_lib_is_default(sollya_obj_t)
Description:
- default is a special value and is replaced by something depending on the
context where it is used. It can often be used as a joker, when you want to
specify one of the optional parameters of a command and not the others: set
the value of uninteresting parameters to default.
- Global variables can be reset by affecting them the special value default.
Example 1:
> p = remez(exp(x),5,[0;1],default,1e-5);
> q = remez(exp(x),5,[0;1],1,1e-5);
> p==q;
true
Example 2:
> prec;
165
> prec=200;
The precision has been set to 200 bits.