<< Prev        Next >>

ID : 3841

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

DegRad

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 : 3841

<< Prev        Next >>