-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
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
use openlibm jn and yn instead of AMOS #4187
Comments
julia> bessely(3,-3)
0.5385416161050315 - 0.6181254445105032im Therefore, I don't think we can use type-inference on the inputs to determine the types outputs. |
The |
I suspect that following the pattern of |
I agree that following Note also that we are currently inconsistent: (Also, it's not clear why we don't use openlibm's |
|
For example,
besselj(1,1.5)
gives0.5579365079100995
, butbessely(1,1.5)
gives aComplex
result-0.4123086269739113 + 0.0im
. There is no reason not to return aReal
result forReal
arguments.The text was updated successfully, but these errors were encountered: