ASin()
Syntax
Result.f = ASin(Value.f)Description
Returns the arc-sine of the specified value.
Parameters
Value.f The input value. It must be between -1 and 1 (-1 and 1 included).
Return value
Returns the resulting angle in radian. It can be transformed into degrees using the Degree() function.
Remarks
This is the inverse function of Sin(). This function can handle float and double values.
Example
Debug ASin(1) ; will display '1.570796' (pi/2) Debug ASin(0) ; will display '0'
See Also
Sin(), ASinH(), Degree()
Supported OS
All