Reference on kuibit.masks

The masks module provides functions to work with masked data.

The module contains syntactic sugar to call masked methods in objects.

kuibit.masks.sqrt = <kuibit.masks._MaskedFunction object>

Invoke the method ma_sqrt in the given object. This is just syntactic sugar.

Parameters:

struct (anything) – Object with a method named ma_sqrt.

Returns:

Return value of ma_sqrt.

Return type:

Same type as input

kuibit.masks.log = <kuibit.masks._MaskedFunction object>

Invoke the method ma_log in the given object. This is just syntactic sugar.

Parameters:

struct (anything) – Object with a method named ma_log.

Returns:

Return value of ma_log.

Return type:

Same type as input

kuibit.masks.log2 = <kuibit.masks._MaskedFunction object>

Invoke the method ma_log2 in the given object. This is just syntactic sugar.

Parameters:

struct (anything) – Object with a method named ma_log2.

Returns:

Return value of ma_log2.

Return type:

Same type as input

kuibit.masks.log10 = <kuibit.masks._MaskedFunction object>

Invoke the method ma_log10 in the given object. This is just syntactic sugar.

Parameters:

struct (anything) – Object with a method named ma_log10.

Returns:

Return value of ma_log10.

Return type:

Same type as input

kuibit.masks.tan = <kuibit.masks._MaskedFunction object>

Invoke the method ma_tan in the given object. This is just syntactic sugar.

Parameters:

struct (anything) – Object with a method named ma_tan.

Returns:

Return value of ma_tan.

Return type:

Same type as input

kuibit.masks.arcsin = <kuibit.masks._MaskedFunction object>

Invoke the method ma_arcsin in the given object. This is just syntactic sugar.

Parameters:

struct (anything) – Object with a method named ma_arcsin.

Returns:

Return value of ma_arcsin.

Return type:

Same type as input

kuibit.masks.arccos = <kuibit.masks._MaskedFunction object>

Invoke the method ma_arccos in the given object. This is just syntactic sugar.

Parameters:

struct (anything) – Object with a method named ma_arccos.

Returns:

Return value of ma_arccos.

Return type:

Same type as input

kuibit.masks.arccosh = <kuibit.masks._MaskedFunction object>

Invoke the method ma_arccosh in the given object. This is just syntactic sugar.

Parameters:

struct (anything) – Object with a method named ma_arccosh.

Returns:

Return value of ma_arccosh.

Return type:

Same type as input

kuibit.masks.arctanh = <kuibit.masks._MaskedFunction object>

Invoke the method ma_arctanh in the given object. This is just syntactic sugar.

Parameters:

struct (anything) – Object with a method named ma_arctanh.

Returns:

Return value of ma_arctanh.

Return type:

Same type as input