Method summary
- __call__(self, a, b, args, kwargs)
- __init__(self, abfunc, fillx = 0, filly = 0)
- __str__(self)
- accumulate(self, target, axis = 0)
- outer(self, a, b)
- reduce(self, target, axis = 0, dtype = None)
Methods
- __call__(self, a, b, args, kwargs)
Execute the call behavior.
- __init__(self, abfunc, fillx = 0, filly = 0)
abfunc(fillx, filly) must be defined. abfunc(x, filly) = x for all x to enable reduce.
- __str__(self)
- accumulate(self, target, axis = 0)
Accumulate target along axis after filling with y fill value.
- outer(self, a, b)
Return the function applied to the outer product of a and b.
- reduce(self, target, axis = 0, dtype = None)
Reduce target along the given axis with this function.
