How to remove every nth element in an array?
import numpy as np x = np.array([0,10,27,35,44,32,56,35,87,22,47,17]) n = 3
... something like the opposite of x[0::n] ? I tried this, but of course this does not work:
for i in np.arange(0,len(x),n): x = np.delete(x,i)
python arrays numpy
Medulla oblongata
source share