DEGRAD (Function)


Converts the unit to a radian.


DEGRAD (<Expression>)


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



DEFSNG lf1, lf2, lf3
lf1 = DEGRAD(90)
'Assigns the value of 90 converted to radians to lf1.
lf2 = SIN(DEGRAD(lf3 + 20))
'Assigns the sign value of (lf3 + 20) converted to
'radians to lf2.


Top