ndarray.prod(axis=None, dtype=None, out=None, keepdims=False) Return the product of the array elements over the given axis
ndarray.reshape(shape, order='C') Returns an array containing the same data with a new shape. Refer to
ndarray.cumsum(axis=None, dtype=None, out=None) Return the cumulative sum of the elements along the given axis. Refer
ndarray.base Base object if memory is from some other object. Examples The base of an array
ndarray.max(axis=None, out=None) Return the maximum along a given axis. Refer to
ndarray.__iand__ x.__iand__(y) <==> x&=y
ndarray.size Number of elements in the array. Equivalent to np.prod(a.shape), i.e., the product of
ndarray.__reduce__() For pickling.
ndarray.getfield(dtype, offset=0) Returns a field of the given array as a certain type. A field is a view of the
ndarray.__hex__() <==> hex(x)
Page 1 of 13