asin function

float asin(x)

x float Value in range [-1, 1].

Returns the arc sine of x in degrees. This value is in the range [-90, 90].
If x is outside [-1, 1], nan is generated.

The asin function calculates the arc sine of x, i.e. the value whose sine is x.

Related