ndarray.cumprod(axis=None, dtype=None, out=None) Return the cumulative product of the elements along the given axis.
ndarray.__setitem__ x.__setitem__(i, y) <==> x[i]=y
ndarray.__getslice__ x.__getslice__(i, j) <==> x[i:j] Use of negative indices is not supported.
ndarray.__ilshift__ x.__ilshift__(y) <==> x<<=y
ndarray.__setslice__ x.__setslice__(i, j, y) <==> x[i:j]=y Use of negative indices is not supported
ndarray.__floordiv__ x.__floordiv__(y) <==> x//y
ndarray.__neg__ x.__neg__() <==> -x
ndarray.take(indices, axis=None, out=None, mode='raise') Return an array formed from the elements of a at the
ndarray.swapaxes(axis1, axis2) Return a view of the array with axis1 and axis2 interchanged
ndarray.ndim Number of array dimensions. Examples >>>
Page 6 of 13