Converts 8-byte real to type (for response values).
Converts 8-byte real to 4-byte integer.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r8), | intent(in) | :: | f |
8-byte real value. |
||
integer(kind=i4), | intent(out) | :: | i |
4-byte integer value. |
Converts 8-byte real to 8-byte integer.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r8), | intent(in) | :: | f |
8-byte real value. |
||
integer(kind=i8), | intent(out) | :: | i |
8-byte integer value. |
Converts 8-byte real to logical. If f
equals 0.0
, the result is
.false.
, else .true.
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r8), | intent(in) | :: | f |
8-byte real value. |
||
logical, | intent(out) | :: | l |
Logical value. |
Converts 8-byte real to 4-byte real
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r8), | intent(in) | :: | f |
8-byte real value. |
||
real(kind=r4), | intent(out) | :: | r |
4-byte real value. |