ASIN — Arcsine functionASIN(X) computes the arcsine of its X (inverse of SIN(X)).
RESULT = ASIN(X)
| X | The type shall be either REAL and a magnitude that is
less than or equal to one - or be COMPLEX.
|
program test_asin
real(8) :: x = 0.866_8
x = asin(x)
end program test_asin
| Name | Argument | Return type | Standard
|
ASIN(X) | REAL(4) X | REAL(4) | Fortran 77 and later
|
DASIN(X) | REAL(8) X | REAL(8) | Fortran 77 and later
|