f_utl_c2r Function

public function f_utl_c2r(c) result(r)

Converts char to real.

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: c

Return Value real(kind=wp)


Called by

proc~~f_utl_c2r~~CalledByGraph proc~f_utl_c2r f_utl_c2r proc~s_dat_read_csv s_dat_read_csv proc~s_dat_read_csv->proc~f_utl_c2r interface~fsml_read_csv fsml_read_csv interface~fsml_read_csv->proc~s_dat_read_csv

Source Code

function f_utl_c2r(c) result(r)

! ==== Description
!! Converts char to real.

! ==== Declarations
  character(len=*), intent(in) :: c
  real(wp)                     :: r

! ==== Instructions
  read(c, *) r

end function f_utl_c2r