ndarray.clip(min=None, max=None, out=None) Return an array whose values are limited to [min, max]. One of max
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.__ixor__ x.__ixor__(y) <==> x^=y
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.setflags(write=None, align=None, uic=None) Set array flags WRITEABLE, ALIGNED, and UPDATEIFCOPY, respectively
ndarray.__invert__ x.__invert__() <==> ~x
ndarray.__ipow__ x.__ipow__(y) <==> x**=y
ndarray.__pow__(y[, z]) <==> pow(x, y[, z])
Page 9 of 13