-
Notifications
You must be signed in to change notification settings - Fork 478
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
Operating elementwise with numpy masked arrays #37
Comments
The new test case shows that the bug is because MaskedArray (and not Quantity) is handling the multiplication. When the order of the operation is reversed, everything works as expected. |
It looses the masked behaviour. |
Multiplying meter by a masked array works as expected:
Is the converse that is not working properly:
Can you confirm this in your system? The problem is that the multiplication is always handled by the left operand. I think that the bug is that the |
Yes, I can confirm that it works with multiplication by left. thanks. |
Review once that #905 is implemented |
It is not working as suposed with masked arrays, it creats objects by elements.
https://gist.github.com/canesin/6072390
The text was updated successfully, but these errors were encountered: