struveh0 Function

public function struveh0(x)

Struve function .

Arguments

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

Return Value real(kind=wp)


Calls

proc~~struveh0~~CallsGraph proc~struveh0 struveh0 proc~strvh0 strvh0 proc~struveh0->proc~strvh0

Source Code

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

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

    struveh0 = strvh0(x)
  end function struveh0