Generic real to string converter.
Converts 4-byte real to allocatable string of length > 1.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r4), | intent(in) | :: | value |
Value. |
String of value.
Converts 8-byte real to allocatable string of length > 1.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r8), | intent(in) | :: | value |
Value. |
String of value.
Converts 4-byte real to allocatable string of length > 1, with
ndigit
digits to the right of the decimal point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r4), | intent(in) | :: | value |
Value. |
||
integer, | intent(in) | :: | n |
Number of digits to the right of the decimal point. |
String of value.
Converts 8-byte real to allocatable string of length > 1, with
ndigit
digits to the right of the decimal point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r8), | intent(in) | :: | value |
Value. |
||
integer, | intent(in) | :: | n |
Number of digits to the right of the decimal point. |
String of value.