From: George S. <geo...@gm...> - 2006-11-12 20:19:12
|
Keith Goodman wrote: > On 11/12/06, George Sakkis <geo...@gm...> wrote: > > This must be pretty trivial but I couldn't find it in the docs: what's > > the "numpythonic" way to find the (first) index of an element, i.e. the > > equivalent to list.index ? > > Does where work? def index(a, value): return N.where(a==value)[0][0] This works but seems clunky and less efficient than necessary. If there isn't a better alternative, I would welcome a new index() function/method in the next numpy release. George |