asin(x) computes the arcsine of its x (inverse of sin(x)).
FORTRAN 77 and later, for a complex argument Fortran 2008 or later
result = asin(x)
x - The type shall be either real and a magnitude that is less than or equal to one or be complex.The return value is of the same type and kind as x. The real part of the result is in radians and lies in the range .
program test_asin
real(8) :: x = 0.866_8
x = asin(x)
end program test_asin
Inverse function: sin