dacapo.experiments.arraytypes.mask

Classes

Mask

A class that inherits the ArrayType class. This is a representation of a Mask in the system.

Module Contents

class dacapo.experiments.arraytypes.mask.Mask

A class that inherits the ArrayType class. This is a representation of a Mask in the system.

interpolatable()

It is a method that returns False.

Note

This class is used to represent a Mask object in the system.

property interpolatable: bool

Method to return False.

Returns:

bool

Returns a boolean value of False representing that the values are not interpolatable.

Raises:

NotImplementedError – This method is not implemented in this class.

Examples

>>> mask = Mask()
>>> mask.interpolatable
False

Note

This method is used to check if the array is interpolatable.