> For example, it would be nice if "outer"
> supported:
>
> outer(b,c,output=a)
> outer(b,c,increment=a)
> outer(b,c,increment=a,scale=eps)
>
> or maybe one could specify an accumulation ufunc, with addition,
> multiplication, min, and max being fast, and with an optional scale
> parameter.
What
Hi,
core NumPy doesn't seem to support a lot of output arguments, or common
composite operations. For example, a common operation is something like
a = outer(b,c)
or
a += outer(b,c)
There are some workarounds, but they aren't pretty. Consistently providing
output arguments throughout NumPy