ndarray.flags Information about the memory layout of the array. Notes The
ndarray.swapaxes(axis1, axis2) Return a view of the array with axis1 and axis2 interchanged
ndarray.__and__ x.__and__(y) <==> x&y
ndarray.__abs__() <==> abs(x)
ndarray.ctypes An object to simplify the interaction of the array with the ctypes module. This attribute creates
ndarray.searchsorted(v, side='left', sorter=None) Find indices where elements of v should be inserted in a to maintain
ndarray.take(indices, axis=None, out=None, mode='raise') Return an array formed from the elements of a at the
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.__itruediv__ x.__itruediv__(y) <==> x/y
ndarray.real The real part of the array. See also
Page 7 of 13