2014-02-23 61 views

回答

2

布爾索引?

In [30]: 

a[(np.indices(a.shape)!=7).flatten()] 
Out[30]: 
array([0, 1, 2, 3, 4, 5, 6, 8, 9]) 

In [35]: 

a[~np.in1d(np.indices(a.shape), (7,9))] 
Out[35]: 
array([0, 1, 2, 3, 4, 5, 6, 8]) 
+0

謝謝,但我改變了我的例子有點。我認爲你的方法處理我想要的。 – Cupitor

+1

是的,使用'in1d'版本,將第二個參數改爲'(7,8,11,12)',:P。 –