We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The logic in index for manipulating an index selection is fairly complicated, particularly the part that removes any ellipsis. (See #400, #401, #402.)
We could use ndindex to help with this - the following shows how easy it is to remove an ellipsis:
idx = ndindex.ndindex(key) key = idx.expand(x.shape).raw
The library is well tested with Hypothesis tests, but it would be another (pure Python) dependency.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The logic in index for manipulating an index selection is fairly complicated, particularly the part that removes any ellipsis. (See #400, #401, #402.)
We could use ndindex to help with this - the following shows how easy it is to remove an ellipsis:
The library is well tested with Hypothesis tests, but it would be another (pure Python) dependency.
The text was updated successfully, but these errors were encountered: