-
Notifications
You must be signed in to change notification settings - Fork 21
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
Subscript bug using Matft.arange()
#38
Comments
@nnethery |
Ah, I may understand. >>> np.arange(8).reshape(4,2)[[2,3], [0,2,1]]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: shape mismatch: indexing arrays could not be broadcast together with shapes (2,) (3,) |
@nnethery |
It works great. You rock @jjjkkkjjj 🎉! |
Numpy version
Matft version
According to Numpy the shape of the MfArray should be
[88]
, not[88, 88]
.The text was updated successfully, but these errors were encountered: