On May 20, 2016 12:44 PM, <josef.p...@gmail.com> wrote:
[...]
>
> can numpy cast to float by default for power or **?

Maybe? The question is whether there are any valid use cases for getting
ints back:

>>> np.array([1, 2, 3]) ** 2
array([1, 4, 9])

It's not 100% obvious to me but intuitively this seems like an operation
that we probably want to support? Especially since there's a reasonable
range of int64 values that can't be represented exactly as floats.

-n
_______________________________________________
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
https://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to