Next: ERF, Previous: EOSHIFT, Up: Intrinsic Procedures
EPSILON — Epsilon functionEPSILON(X) returns a nearly negligible number relative to 1.
     C = EPSILON(X)
     | X | The type shall be REAL(*). | 
          program test_epsilon
              real :: x = 3.143
              real(8) :: y = 2.33
              print *, EPSILON(x)
              print *, EPSILON(y)
          end program test_epsilon