-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
better message for raising integer to a negative integer #7702
Comments
Yes, when both inputs are integers. You could do |
It even has it's own FAQ entry |
Sorry, missed that one. was looking the manual. I do think this will On Wed, Jul 23, 2014 at 4:00 AM, Ivar Nesje [email protected]
|
Yep. If you have any good suggestions (that haven't been discussed before; please search old issues first), please let us know. |
It is not mentioned in http://docs.julialang.org/en/latest/manual/noteworthy-differences/#noteworthy-differences-from-matlab. It probably should, because this is really a noteworthy difference. |
We can also probably add some text to the printing of |
Note that raising a floating-point value to a negative integer is fine, so technically this is not different than Matlab – it's just that in Matlab |
In Matlab:
The notable thing (which isn't mentioned) is that |
Also clarify line continuation behavior. Ref JuliaLang#7702
We should probably have a more informative error. |
Reopening for a better error message. I'll assign myself. |
Closed by #8784. |
Is throwing a DomainError intended behavior when raising to a negative integer?
julia> VERSION
v"0.3.0-rc1+86"
julia> 2^-1
ERROR: DomainError
in power_by_squaring at intfuncs.jl:60
in ^ at intfuncs.jl:84
julia> 2^-1.
0.5
The text was updated successfully, but these errors were encountered: