Next: ATAN2, Previous: ASSOCIATED, Up: Intrinsic Procedures
ATAN — Arctangent functionATAN(X) computes the arctangent of X.
     RESULT = ATAN(X)
     | X | The type shall be REAL(*). | 
REAL(*) and it lies in the
range  - \pi / 2 \leq \atan (x) \leq \pi / 2.
               program test_atan
            real(8) :: x = 2.866_8
            x = atan(x)
          end program test_atan
     
     | Name | Argument | Return type | Standard | 
| DATAN(X) | REAL(8) X | REAL(8) | F77 and later |