9.114 FRACTION — Fractional part of the model representation
- Description:
 - 
FRACTION(X)returns the fractional part of the model representation ofX. - Standard:
 - 
Fortran 90 and later
 - Class:
 - 
Elemental function
 - Syntax:
 - 
Y = FRACTION(X) - Arguments:
 - 
X The type of the argument shall be a REAL. - Return value:
 - 
The return value is of the same type and kind as the argument. The fractional part of the model representation of
Xis returned; it isX * RADIX(X)**(-EXPONENT(X)). - Example:
 - 
program test_fraction real :: x x = 178.1387e-4 print *, fraction(x), x * radix(x)**(-exponent(x)) end program test_fraction
 
    © Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
    https://gcc.gnu.org/onlinedocs/gcc-10.2.0/gfortran/FRACTION.html