struveh1 Function

public function struveh1(x)

Struve function .

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in) :: x

Return Value real(kind=wp)


Calls

proc~~struveh1~~CallsGraph proc~struveh1 struveh1 proc~strvh1 strvh1 proc~struveh1->proc~strvh1

Source Code

  real(wp) function struveh1(x)
    !! Struve function \(\mathbf{H}_1(x)\).
    !
    !! \(x \in \mathbb{R}\)

    real(wp), intent(in) :: x

    struveh1 = strvh1(x)
  end function struveh1