RADDEG
(Function)

Converts the unit to degrees.

RADDEG (<Expression>)

This statement converts the unit of the value designated in <Expression> from radians to degrees.

DEFSNG lf1, lf2
|
|
lf1 = RADDEG(1.5705)
|
'Assigns the value of 1.5705 converted to degrees to lf1.
|
lf2 = RADDEG(PI/2)
|
'Assigns the sine value of (π/2) converted to degrees to lf2.
|