Next: ASINH, Previous: ASIN, Up: Intrinsic Procedures [Contents][Index]
ASIND
— Arcsine function, degreesASIND(X)
computes the arcsine of its X in degrees (inverse of
SIND(X)
).
This function is for compatibility only and should be avoided in favor of standard constructs wherever possible.
GNU Extension, enabled with -fdec-math.
Elemental function
RESULT = ASIND(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 degrees and lies in the range -90 \leq \Re \asin(x) \leq 90.
program test_asind real(8) :: x = 0.866_8 x = asind(x) end program test_asind
Name | Argument | Return type | Standard |
ASIND(X) | REAL(4) X | REAL(4) | GNU Extension |
DASIND(X) | REAL(8) X | REAL(8) | GNU Extension |