AbstractArray

class ompy.AbstractArray[source]

Bases: object

Abstract class for Matrix and Vector.

Do not initialize itself.

Attributes Summary

shape

rtype

Union[Tuple[int], Tuple[int, int]]

Methods Summary

copy()

Return a deepcopy of the class

has_equal_binning()

Raise error as it is implemented in subclass only

Attributes Documentation

shape
Return type

Union[Tuple[int], Tuple[int, int]]

Methods Documentation

copy()[source]

Return a deepcopy of the class

Return type

AbstractArray

has_equal_binning()[source]

Raise error as it is implemented in subclass only

Return type

bool

copy()[source]

Return a deepcopy of the class

Return type

AbstractArray

has_equal_binning()[source]

Raise error as it is implemented in subclass only

Return type

bool