Arc Sine
Syntax:
Function ASin(ByVal Value As Double) As Double
Parameters:
Name Type Description
Value
Double
Remarks:
The ASin method returns the inverse sine (arc sine) of a given value. The result is an angle in radians bounded by -pi/2 and pi/2. To convert the result from radians to degrees, use the AngleConvert function or multiply the result by 180/3.14152.
Examples:
In the following code example, w is equal to -0.8480621, x is equal to 0.8480621, y is equal to 0, and z is equal to 1.570796.
w = ASIN(-0.75) x = ASIN(0.75) y = ASIN(0) z = ASIN(1)