Clicky
Showing changes from revision #1 to #2:
(追記) Added (追記ここまで) | (削除) Removed (削除ここまで) | (削除) Chan (削除ここまで)(追記) ged (追記ここまで)
Determines the distance between the argument x
and the nearest adjacent number of the same type.
(削除) Fortran 95 and later (削除ここまで)(追記) Fortran 95 (追記ここまで)(追記) and later (追記ここまで)
Elemental function
result = spacing(x)
x
- Shall be of type real
.The result is of the same type as the input argument x
.
program test_spacing
integer, parameter :: sgl = selected_real_kind(p=6, r=37)
integer, parameter :: dbl = selected_real_kind(p=13, r=200)
write(*,*) spacing(1.0_sgl) ! "1.1920929e-07" on i686
write(*,*) spacing(1.0_dbl) ! "2.220446049250313e-016" on i686
end program