Next: ASSOCIATED, Previous: ANY, Up: Intrinsic Procedures
ASIN — Arcsine functionASIN(X) computes the arcsine of its X.
     X = 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 \arccos (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 | Option | 
| DASIN(X) | REAL(8) X | REAL(8) | f95, gnu |