ndarray.__add__ x.__add__(y) <==> x+y
ndarray.astype(dtype, order='K', casting='unsafe', subok=True, copy=True) Copy of the array, cast to a specified type.
static ndarray.__new__(S, ...) ? a new object with type S, a subtype of T
ndarray.__repr__() <==> repr(x)
ndarray.__truediv__ x.__truediv__(y) <==> x/y
ndarray.__idiv__ x.__idiv__(y) <==> x/=y
ndarray.fill(value) Fill the array with a scalar value.
ndarray.itemsize Length of one array element in bytes. Examples
ndarray.__invert__ x.__invert__() <==> ~x
ndarray.__ifloordiv__ x.__ifloordiv__(y) <==> x//y
Page 9 of 13