On Fri, Oct 10, 2014 at 11:23 AM, Benjamin Root <ben.r...@ou.edu> wrote:

> I have a need to "and" together an arbitrary number of boolean arrays.
> np.logical_and() expects only two positional arguments. There has got to be
> some sort of easy way to just and these together using the ufunc mechanism,
> right?
>

Do you really need a ufunc? The obvious way to do this (at least to me)
would be use reduce (if you're especially concerned about memory) or just
np.all.
_______________________________________________
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to