besselj1 Function

public function besselj1(x)

Bessel function of the first kind of order one .

Arguments

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

Return Value real(kind=wp)


Calls

proc~~besselj1~~CallsGraph proc~besselj1 besselj1 proc~caljy1 caljy1 proc~besselj1->proc~caljy1

Source Code

  real(wp) function besselj1(x)
    !! Bessel function of the first kind of order one \(J_1(x)\).
    !
    !! \(x \in \mathbb{R}\)

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

    call caljy1(x, besselj1, 0)
  end function besselj1