ndarray.take(indices, axis=None, out=None, mode='raise') Return an array formed from the elements of a at the
ndarray.byteswap(inplace) Swap the bytes of the array elements Toggle between low-endian and big-endian data representation
ndarray.flags Information about the memory layout of the array. Notes The
ndarray.__and__ x.__and__(y) <==> x&y
ndarray.any(axis=None, out=None, keepdims=False) Returns True if any of the elements of a evaluate to True.
ndarray.real The real part of the array. See also
ndarray.ndim Number of array dimensions. Examples >>>
ndarray.__add__ x.__add__(y) <==> x+y
ndarray.resize(new_shape, refcheck=True) Change shape and size of array in-place.
ndarray.__abs__() <==> abs(x)
Page 8 of 13