Skip to content
This repository has been archived by the owner on Jan 16, 2021. It is now read-only.

Latest commit

 

History

History
39 lines (34 loc) · 1.16 KB

RAD.org

File metadata and controls

39 lines (34 loc) · 1.16 KB

Top | Up (Math) | < Previous (PI) | Next (DEG) >

RAD

DEG finds degree values from radians values.

More information on converting radians from degrees can be found here.

Syntax

RAD degrees# OUT radians#
parameterdescription
degrees#Value in degrees
outputdescription
radians#Value in radians

Examples

VAR X# = RAD(45) ' (45 * (PI / 180)) = 0.78539816
VAR Y# = DEG(X#) ' (0.78529816 / (PI / 180)) = 45

Possible Errors

ErrorCause
Illegal function calldegrees# is unspecified
Type mismatchdegrees# is a string or array

Version Information

3.0.0

Function: exists.

See Also

References


Top | Up (Math) | < Previous (PI) | Next (DEG) >