strf_R8P Function

private elemental function strf_R8P(fm, n) result(str)

Arguments

TypeIntentOptionalAttributesName
character, intent(in) :: fm
real(kind=R8P), intent(in) :: n

Return Value character


Called by

proc~~strf_r8p~4~~CalledByGraph proc~strf_r8p~4 strf_R8P interface~str~4 str interface~str~4->proc~strf_r8p~4 proc~bctoi_i8p~4 bctoi_I8P proc~bctoi_i8p~4->interface~str~4 proc~bctoi_i4p~4 bctoi_I4P proc~bctoi_i4p~4->interface~str~4 proc~bctoi_i2p~4 bctoi_I2P proc~bctoi_i2p~4->interface~str~4 proc~bctoi_i1p~4 bctoi_I1P proc~bctoi_i1p~4->interface~str~4 interface~bcton~4 bcton interface~bcton~4->proc~bctoi_i8p~4 interface~bcton~4->proc~bctoi_i4p~4 interface~bcton~4->proc~bctoi_i2p~4 interface~bcton~4->proc~bctoi_i1p~4

Contents

Source Code


Source Code

   elemental function strf_R8P(fm, n) result(str)
   !< Convert real to string.
   !<
   !<```fortran
   !< use penf
   !< print "(A)", str(fm=FR8P, n=1._R8P)
   !<```
   !=> 0.100000000000000E+001 <<<
   character(*), intent(in) :: fm  !< Format different from the standard for the kind.
   real(R8P),    intent(in) :: n   !< Real to be converted.
   character(DR8P)          :: str !< Returned string containing input number.

   write(str, trim(fm)) n
   endfunction strf_R8P