Atan Method

Description
Returns the arc tangent of a numeric expression.

Syntax
Function Atan (number As Double) As Double

Parameters

  • number
    Angle tangent (real number)

Return Value
Arc tangent of the specified value

See Also
Atan2 Method

Atan Example
VB Example:

Dim angle As Doubleangle = m_spel.Atan(.7)  

C# Example:

double angle;  
  
angle = m_spel.Atan(.7);