Next: , Previous: DCMPLX, Up: Intrinsic Procedures


6.49 DFLOAT — Double conversion function

Description:
DFLOAT(X) Converts X to double precision real type.
Standard:
GNU extension
Class:
Elemental function
Syntax:
RESULT = DFLOAT(X)
Arguments:

X The type shall be INTEGER(*).

Return value:
The return value is of type double precision real.
Example:
          program test_dfloat
              integer :: i = 5
              print *, dfloat(i)
          end program test_dfloat
     

See also:
DBLE, FLOAT, REAL