ndarray.__imod__ x.__imod__(y) <==> x%=y
ndarray.dump(file) Dump a pickle of the array to the specified file. The array can be read back with pickle.load or numpy
ndarray.__div__ x.__div__(y) <==> x/y
ndarray.__or__ x.__or__(y) <==> x|y
ndarray.__imul__ x.__imul__(y) <==> x*=y
ndarray.__array__(|dtype) ? reference if type unchanged, copy otherwise. Returns either a new reference to self if dtype
ndarray.tostring(order='C') Construct Python bytes containing the raw data bytes in the array. Constructs Python
ndarray.__mod__ x.__mod__(y) <==> x%y
ndarray.clip(min=None, max=None, out=None) Return an array whose values are limited to [min, max]. One of max
ndarray.ctypes An object to simplify the interaction of the array with the ctypes module. This attribute creates
Page 7 of 13