ASIND — Arcsine function, degrees¶
- ASIND(X)¶
ASIND(X)computes the arcsine of itsXin degrees (inverse ofSIND(X)).- Parameters
X – The type shall be either
REALand a magnitude that is less than or equal to one - or beCOMPLEX.- Returns
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.
Standard:GNU extension, enabled with
-fdec-math.Class:Elemental function
Syntax:RESULT = ASIND(X)
Example:program test_asind real(8) :: x = 0.866_8 x = asind(x) end program test_asind
Specific names:Name
Argument
Return type
Standard
ASIND(X)REAL(4) XREAL(4)GNU extension
DASIND(X)REAL(8) XREAL(8)GNU extension
See also:Inverse function: SIND Radians function: ASIN