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.resize(new_shape, refcheck=True) Change shape and size of array in-place.
ndarray.real The real part of the array. See also
ndarray.any(axis=None, out=None, keepdims=False) Returns True if any of the elements of a evaluate to True.
ndarray.__imul__ x.__imul__(y) <==> x*=y
ndarray.byteswap(inplace) Swap the bytes of the array elements Toggle between low-endian and big-endian data representation
ndarray.__array__(|dtype) ? reference if type unchanged, copy otherwise. Returns either a new reference to self if dtype
ndarray.__add__ x.__add__(y) <==> x+y
ndarray.__itruediv__ x.__itruediv__(y) <==> x/y
ndarray.__imod__ x.__imod__(y) <==> x%=y
Page 8 of 13