ndarray.byteswap(inplace) Swap the bytes of the array elements Toggle between low-endian and big-endian data representation
ndarray.tobytes(order='C') Construct Python bytes containing the raw data bytes in the array. Constructs Python
ndarray.__irshift__ x.__irshift__(y) <==> x>>=y
ndarray.itemsize Length of one array element in bytes. Examples
ndarray.__repr__() <==> repr(x)
ndarray.mean(axis=None, dtype=None, out=None, keepdims=False) Returns the average of the array elements along given axis.
ndarray.__ifloordiv__ x.__ifloordiv__(y) <==> x//y
ndarray.transpose(*axes) Returns a view of the array with axes transposed. For a 1-D array, this has no effect
static ndarray.__new__(S, ...) ? a new object with type S, a subtype of T
ndarray.view(dtype=None, type=None) New view of array with the same data.
Page 9 of 13