Function: math[rad], math[deg] - convert degrees to radians and vice versa
Calling Sequence:
rad(angle);
deg(radian);
Description:
These two functions work like 'convert/degrees' and 'convert/radians', but are easier to use.
These functions are part of the math package, and so can be used only after performing the command with(math), with(math, deg), or with(math, rad).
Examples:
> rad(90);
> deg(1/3*Pi);
See Also:
convert/degrees , convert/radians .
Version History: