get_sd Function

public function get_sd(data) result(sd)

Arguments

Type IntentOptional Attributes Name
real(kind=8), intent(in), dimension(:) :: data

Return Value real(kind=8)


Calls

proc~~get_sd~~CallsGraph proc~get_sd get_sd proc~get_moments get_moments proc~get_sd->proc~get_moments

Source Code

  function get_sd(data) result(sd)
    real(8), dimension(:), intent(in) :: data
    real(8)                           :: sd
    call get_moments(data,sdev=sd)
  end function get_sd