asin(x) computes the arcsine of its x (inverse of sin(x)).
FORTRAN 77 and later
result = asin(x)
x - The type shall be real, and a magnitude that is less than one.The return value is of type real and it lies in the range . The kind type parameter is the same as x.
program test_asin
real(8) :: x = 0.866_8
x = asin(x)
end program test_asin
Inverse function: sin