Bessel function of the second kind of order one .
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=wp), | intent(in) | :: | x |
real(wp) function bessely1(x) !! Bessel function of the second kind of order one \(Y_1(x)\). ! !! \(\lbrace x \in \mathbb{R} \mid x \gt 0 \rbrace\) real(wp), intent(in) :: x if (x < 0) then bessely1 = nan() else call caljy1(x, bessely1, 1) if (bessely1 <= -huge(0.0_wp)) then bessely1 = ninf() end if end if end function bessely1