ndarray.tostring(order='C') Construct Python bytes containing the raw data bytes in the array. Constructs Python
ndarray.__imod__ x.__imod__(y) <==> x%=y
ndarray.__neg__ x.__neg__() <==> -x
ndarray.flags Information about the memory layout of the array. Notes The
ndarray.__abs__() <==> abs(x)
ndarray.resize(new_shape, refcheck=True) Change shape and size of array in-place.
ndarray.__and__ x.__and__(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.clip(min=None, max=None, out=None) Return an array whose values are limited to [min, max]. One of max
ndarray.__itruediv__ x.__itruediv__(y) <==> x/y
Page 8 of 13