class _MaskedBinaryOperation(_MaskedUFunc):
Define masked version of binary operations, where invalid values are pre-masked.
Method | __call__ |
Execute the call behavior. |
Method | __init__ |
abfunc(fillx, filly) must be defined. |
Method | accumulate |
Accumulate target along axis after filling with y fill value. |
Method | outer |
Return the function applied to the outer product of a and b. |
Method | reduce |
Reduce target along the given axis . |
Instance Variable | fillx |
Undocumented |
Instance Variable | filly |
Undocumented |
Inherited from _MaskedUFunc
:
Method | __str__ |
Undocumented |
Instance Variable | __name__ |
Undocumented |
Instance Variable | f |
Undocumented |
numpy.ma.core._MaskedUFunc.__init__
abfunc(fillx, filly) must be defined.
abfunc(x, filly) = x for all x to enable reduce.