Syntax
Public Function MathAtn(Number As Double) As Double
Description
This function is used to return the angle that has a tangentequal to a given number.
Parameters
Key | Description |
Number | numeric to get tan angle for it, valueof type double. |
Return value
Return the angle in radians format,value of type Double.
Sample
Public Sub main()AlertMessage (MathAtn(1.0)) 'Tangent = 1.0 , Arctangent = 0.785398163397448AlertMessage (MathAtn(0.0)) 'Tangent = 0.0 , Arctangent = 0.0End Sub
See Also