On 2/6/2009 9:59 PM, Christopher Brown wrote: > Hi List, > > What's the best way to find all zero crossings in my data? Is there > something already written in scipy? > zc = numpy.where(numpy.sign(a[1:]) != numpy.sign(a[:-1])) ... or something like that. Sturla Molden