ndarray.fill(value) Fill the array with a scalar value.
ndarray.setflags(write=None, align=None, uic=None) Set array flags WRITEABLE, ALIGNED, and UPDATEIFCOPY, respectively
ndarray.__idiv__ x.__idiv__(y) <==> x/=y
ndarray.__ifloordiv__ x.__ifloordiv__(y) <==> x//y
ndarray.tobytes(order='C') Construct Python bytes containing the raw data bytes in the array. Constructs Python
static ndarray.__new__(S, ...) ? a new object with type S, a subtype of T
ndarray.astype(dtype, order='K', casting='unsafe', subok=True, copy=True) Copy of the array, cast to a specified type.
ndarray.mean(axis=None, dtype=None, out=None, keepdims=False) Returns the average of the array elements along given axis.
ndarray.__pow__(y[, z]) <==> pow(x, y[, z])
ndarray.itemsize Length of one array element in bytes. Examples
Page 10 of 13