|
From: Jean-Michel P. <jea...@ir...> - 2004-08-17 09:13:55
|
Hello,
I installed matplotlib 0.61 today and had a bug in the function
detrend_linear (matplotlib/mlab.py line 113):
xx = arange(len(x), x.typecode())
should certainly be replaced with:
xx = arange(len(x), typecode=x.typecode())
It works well on my computer!
Regards.
JM. Philippe
|