get_skew Function

public function get_skew(data) result(skew)

Arguments

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

Return Value real(kind=8)


Calls

proc~~get_skew~~CallsGraph proc~get_skew get_skew proc~get_moments get_moments proc~get_skew->proc~get_moments

Source Code

  function get_skew(data) result(skew)
    real(8), dimension(:), intent(in) :: data
    real(8)                           :: skew
    call get_moments(data,skew=skew)
  end function get_skew