Re: [Numpy-discussion] can't use argmin for array of timedeltas

2011-09-15 Thread Benjamin Root
On Thu, Sep 15, 2011 at 2:49 PM, Benjamin Root wrote: > I encountered something similar back in April or so and that it was fixed. > The problem was that the minimum function was implemented as max(0 - a), and > so this fails for timedelta objects that can't do this. This was fixed for > min(),

[Numpy-discussion] can't use argmin for array of timedeltas

2011-09-15 Thread Benjamin Root
I encountered something similar back in April or so and that it was fixed. The problem was that the minimum function was implemented as max(0 - a), and so this fails for timedelta objects that can't do this. This was fixed for min(), but apparently not for argmin(). Ben Root _