Comment on NumPy 1.20parentComments−6gvONxR4sf7o5yDoes that work the same way with strided arrays?−montebicyclelo5yAssuming you mean what I think you mean, it does work.e.g. a[::2, ::3].flat[idx], where idx is from 0 to width*height of the view(idx can also be a NumPy array, for getting multiple values)
Comments
Does that work the same way with strided arrays?
Assuming you mean what I think you mean, it does work.
e.g. a[::2, ::3].flat[idx], where idx is from 0 to width*height of the view
(idx can also be a NumPy array, for getting multiple values)