ndarray.strides Tuple of bytes to step in each dimension when traversing an array. The byte offset of element
ndarray.base Base object if memory is from some other object. Examples The base of an array
ndarray.min(axis=None, out=None, keepdims=False) Return the minimum along a given axis. Refer to
ndarray.__ne__ x.__ne__(y) <==> x!=y
ndarray.ravel([order]) Return a flattened array. Refer to
ndarray.item(*args) Copy an element of an array to a standard Python scalar and return it.
ndarray.__iand__ x.__iand__(y) <==> x&=y
ndarray.max(axis=None, out=None) Return the maximum along a given axis. Refer to
ndarray.cumsum(axis=None, dtype=None, out=None) Return the cumulative sum of the elements along the given axis. Refer
ndarray.__gt__ x.__gt__(y) <==> x>y
Page 1 of 13