MaskedArray.flags Information about the memory layout of the array. Notes The
MaskedArray.__irshift__ x.__irshift__(y) <==> x>>=y
MaskedArray.__divmod__(y) <==> divmod(x, y)
MaskedArray.nbytes Total bytes consumed by the elements of the array. Notes Does
MaskedArray.conj() Complex-conjugate all elements. Refer to numpy.conjugate for full documentation
MaskedArray.__mul__(other)
MaskedArray.__rand__ x.__rand__(y) <==> y&x
MaskedArray.__abs__() <==> abs(x)
MaskedArray.__xor__ x.__xor__(y) <==> x^y
MaskedArray.__getslice__(i, j)
Page 1 of 11