- Sponsor
-
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
Matrix constructors should be able to take floating point value for size #136
Comments
I'm not sure about this. This is a context that requires an integer semantically, since it is an element count. So I think code should have to explicitly convert floats, which will also remind you to think about whether you want floor or ceil. |
I dunno. Being forced to pass ints is pretty annoying. |
I'd go with round, rather than floor or ceil. Another possibility is only accepting values that are integers, but happen to be stored as floats. |
That occurred to me as well. Seems a bit iffy, but might be pragmatic. |
I don't see why being forced to pass ints is that annoying. I don't think it's ever come up before. |
It would be nice to also allow any int to be passed. I discovered that only 64-bit ints work now (presumably because I am on a 64-bit platform). Array should allow any Int for its sizes. |
Allowing any Int will happen. |
I also wish we would disallow floats as indexes. Yesterday Giuseppe noticed that while |
Not being able to do
It's hard to argue that any other behavior is right in either of these cases. For different |
It's not that round is wrong or arbitrary; the only thing I prefer to round is giving an error. |
We should call |
Yes Implementing ref, assign, and functions like it is also trickier since you have to be careful to round before any index computations happen. It's not always enough to rely on simpler cases of This feature creates an expectation that floats generally work everywhere, so as library code is added |
Ok, well, in that case, we should get rid of all of these. Makes me wonder about automatic conversion on assignment to object fields. Seems inconsistent to allow one but not the other. |
It is consistent. Julia has a concept of a "typed location", which includes struct and array elements, and variables with declared types. Values are converted when assigned to typed locations. Function arguments are not typed locations. If you have Matlab allows float indexes because in the beginning every number was a float64. For us it seems to make sense to have things that should be integers actually be integers. Maybe we should revisit the behavior of |
Just noticed something else that should have been obvious: the range 1:2.5 only visits 1 and 2, so a[1:end/2] would not automatically reach the same index as a[end/2]. Having / do rounding division would fix this without allowing float indexes in general. And FWIW, that's what matlab does. |
Another solution to this problem would be to have conversion of floats to integers do rounding instead of truncation. I know it's not what C does, but it's hard to argue that it's not a better conversion. I've seen quite a few PHP programmers (and other floating point unsavvy types) get really confused by these, deciding that it's actually a PHP bug. |
The main problem I can think of with rounding is that it's slower. The other problem is that we'd have to loop over index arguments and explicitly convert the endpoints of any ranges. This would have to be done in all ref and assign methods that might take ranges. Only other solution is to change the behavior of 1:2.5, or change the behavior of /. |
True, rounding is slower. However, it's much more frequently the right conversion — we could head off a lot of future bugs by making it the default conversion for integers from non-integer reals. This especially applies to relatively inexperienced programmers. One could, of course, still use |
OK, I could go along with that. It also makes it easy to justify having / do rounding division. I found |
I think that having |
* update tests * add more tests * small fixes * fix deprecations * fix code loading in test child; improve robustness of same in build
Fix deprecation message.
This should work:
julia> a = rand(1e6)
no method rand(Float64,)
in method_missing, boot.j:250
in run_repl, /home/stephan/julia/j/client.j:23
in _start, /home/stephan/julia/j/client.j:153
The text was updated successfully, but these errors were encountered: