Skip to content
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

Closed
macd opened this issue Jul 23, 2014 · 11 comments
Closed

better message for raising integer to a negative integer #7702

macd opened this issue Jul 23, 2014 · 11 comments
Assignees

Comments

@macd
Copy link
Contributor

macd commented Jul 23, 2014

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

@ViralBShah
Copy link
Member

Yes, when both inputs are integers. You could do 2.0^-1 as well.

@ivarne
Copy link
Member

ivarne commented Jul 23, 2014

It even has it's own FAQ entry

@macd
Copy link
Contributor Author

macd commented Jul 23, 2014

Sorry, missed that one. was looking the manual. I do think this will
trip up many folks coming from MATLAB.

On Wed, Jul 23, 2014 at 4:00 AM, Ivar Nesje [email protected]
wrote:

It even has it's own FAQ entry
http://docs.julialang.org/en/latest/manual/faq/#why-does-julia-give-a-domainerror-for-perfectly-sensible-operations


Reply to this email directly or view it on GitHub
#7702 (comment).

@timholy
Copy link
Member

timholy commented Jul 23, 2014

Yep. If you have any good suggestions (that haven't been discussed before; please search old issues first), please let us know.

@ivarne
Copy link
Member

ivarne commented Jul 23, 2014

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.

@ivarne
Copy link
Member

ivarne commented Jul 23, 2014

We can also probably add some text to the printing of DomainError for power_by_squaring as we did in #4249

@StefanKarpinski
Copy link
Member

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 2 is a floating-point number, not an integer.

@mbauman
Copy link
Member

mbauman commented Jul 23, 2014

In Matlab:

>> int64(2)^-1
Error using  .^ 
Integers can only be raised to positive integral powers.

The notable thing (which isn't mentioned) is that 2 isn't a Float64. The domain error could then be mentioned as a consequence.

mbauman added a commit to mbauman/julia that referenced this issue Jul 23, 2014
Also clarify line continuation behavior.  Ref JuliaLang#7702
@ViralBShah
Copy link
Member

We should probably have a more informative error.

@ivarne
Copy link
Member

ivarne commented Jul 23, 2014

Reopening for a better error message. I'll assign myself.

@ivarne ivarne reopened this Jul 23, 2014
@ivarne ivarne self-assigned this Jul 23, 2014
@JeffBezanson JeffBezanson changed the title Throw DomainError when raising to a negative integer? better message for raising integer to a negative integer Jul 27, 2014
@jakebolewski
Copy link
Member

Closed by #8784.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants