MaskedArray.__divmod__(y) <==> divmod(x, y)
ndarray.__long__() <==> long(x)
ndarray.__hex__() <==> hex(x)
MaskedArray.__imod__ x.__imod__(y) <==> x%=y
MaskedArray.__xor__ x.__xor__(y) <==> x^y
recarray.tostring(order='C') Construct Python bytes containing the raw data bytes in the array. Constructs Python
recarray.nonzero() Return the indices of the elements that are non-zero. Refer to
ndarray.ravel([order]) Return a flattened array. Refer to
ndarray.squeeze(axis=None) Remove single-dimensional entries from the shape of a. Refer to
generic.astype() Not implemented (virtual attribute) Class generic exists solely to derive numpy scalars from, and
Page 1 of 56