We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
besselj(n, x)
NaN
x
n
Consider calling besselj(n, x) where x is negative, while n is a large negative integer:
julia> Bessels.besselj(-172, -2.0) NaN julia> Bessels.besselj(-37, -2.0f0) NaN32
When at least one argument is positive, there is no problem:
julia> Bessels.besselj(172, -2.0) 4.657823561745e-312 julia> Bessels.besselj(-37, 2.0f0) -7.1f-44
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider calling
besselj(n, x)
wherex
is negative, whilen
is a large negative integer:When at least one argument is positive, there is no problem:
The text was updated successfully, but these errors were encountered: