Next: ASINH, Previous: ANY, Up: Intrinsic Procedures
ASIN — Arcsine functionASIN(X) computes the arcsine of its X (inverse of SIN(X)).
RESULT = ASIN(X)
| X | The type shall be REAL(*), and a magnitude that is
less than one.
|
REAL(*) and it lies in the
range -\pi / 2 \leq \asin (x) \leq \pi / 2. 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
| Name | Argument | Return type | Standard
|
DASIN(X) | REAL(8) X | REAL(8) | F77 and later
|