On Thu, Jun 2, 2011 at 1:49 AM, Mark Miller <[email protected]> wrote:
> Not quite. Bincount is fine if you have a set of approximately
> sequential numbers. But if you don't....

Even worse, it fails miserably if you sequential numbers but with a high shift.

np.bincount([100000001, 100000002]) # will take a lof of memory

Doing bincount with dict is faster in those cases.

cheers,

David
_______________________________________________
NumPy-Discussion mailing list
[email protected]
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to