Syntax
Public Function MathArcCos (Number As Double) As Double
Description
The inverse function of the cosine, Which is used to return the angle that has cosine equal to the given number.
Parameters
Key | Description |
Number | Value between -1 and 1 value of type Double. |
Return value
Returns the angle in radians format, a value of type Double.
Sample
Public Sub main() AlertMessage MathArcCos (0.1) End Sub
See Also