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
No description provided.
The text was updated successfully, but these errors were encountered:
I was looking at what this would mean and couldn't figure out what you mean by a "negative step"
Sorry, something went wrong.
Sorry, should have added more context. I was referring to the numpy / python ability to provide a negative step value:
import numpy as np a = np.array(range(1, 20)) # array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]) a[5:0:-1] # array([6, 5, 4, 3, 2]) # also, can provide negative start/end a[-5:0:-1] array([15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2])
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: