class documentation

class _MaskedUnaryOperation(_MaskedUFunc): (source)

View In Hierarchy

Defines masked version of unary operations, where invalid values are pre-masked.

Parameters
mufuncThe function for which to define a masked version. Made available as _MaskedUnaryOperation.f.
fillFilling value, default is 0.
domainDomain for the function. Should be one of the _Domain* classes. Default is None.
Method __call__ Execute the call behavior.
Method __init__ Undocumented
Instance Variable domain Undocumented
Instance Variable fill Undocumented

Inherited from _MaskedUFunc:

Method __str__ Undocumented
Instance Variable __name__ Undocumented
Instance Variable f Undocumented
def __call__(self, a, *args, **kwargs): (source)

Execute the call behavior.

def __init__(self, mufunc, fill=0, domain=None): (source)

Undocumented

domain: class instance = (source)

Undocumented

fill: scalar, optional = (source)

Undocumented