ID : 239
RadDeg
Function
To convert the angle unit from radian to [Degree].
Syntax
RadDeg(formula)
Guaranteed entry
- Formula
- Specify the radian angle value.
Return value
Return the [Degree] value converted from the value specified in formula.
Description
The value specified in formula is converted from radian to [Degree].
Related Terms
Attention
-
Example
'!TITLE "Converting Unit from Radian to Degree"
' Convert 1.5705 to degrees
Sub Sample_RadDeg
Dim aaa As Integer
' Assign a value converted from 1.5705 to degrees to aaa
aaa = RadDeg( 1.5705 )
' Display "90" on the message output window
PrintDbg aaa
End Sub
ID : 239