On Oct 27, 2009, at 7:56 AM, Gökhan Sever wrote:
>
>
> Unfortunately, matplotlib.mlab's prctile cannot handle this division:

Actually, the division's OK, it's mlab.prctile which is borked. It  
uses the length of the input array instead of its count to compute the  
nb of valid data. The easiest workaround in your case is probably to  
use:
 >>> prctile((am/bm).compressed(), p=[5,25,50,75,95])
HIH
P.
_______________________________________________
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to