class documentation

class _MaskedUnaryOperation(_MaskedUFunc):

View In Hierarchy

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

Parameters

mufunc : callable
The function for which to define a masked version. Made available as _MaskedUnaryOperation.f.
fill : scalar, optional
Filling value, default is 0.
domain : class instance
Domain 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):
Execute the call behavior.
def __init__(self, mufunc, fill=0, domain=None):

Undocumented

domain =

Undocumented

fill =

Undocumented