SELECT D/R/G


General Forms:
selectdgr.gif

Where:

     D           = use degrees for trigonometric functions

     G           = use gradians for trigonometric functions

     R           = use radians for trigonometric functions


The {D,R,G} select parameter statement sets the mathematical mode for calculating trigonometric functions. By default all calculations are performed in radians. The system resets to the default of radians after a CLEAR or a SELECT R.

Example:

SELECT RADIANS
PRINT SIN(120)
SELECT GRADIANS
PRINT SIN(120)
SELECT DEGREES
PRINT SIN(120)

Output:

 0.5806111842123
 0.9510565162952
 0.8660254037844

See also:

ON ... SELECT