ndarray.__oct__() <==> oct(x)
ndarray.strides Tuple of bytes to step in each dimension when traversing an array. The byte offset of element
ndarray.__gt__ x.__gt__(y) <==> x>y
ndarray.item(*args) Copy an element of an array to a standard Python scalar and return it.
ndarray.round(decimals=0, out=None) Return a with each element rounded to the given number of decimals.
ndarray.max(axis=None, out=None) Return the maximum along a given axis. Refer to
ndarray.reshape(shape, order='C') Returns an array containing the same data with a new shape. Refer to
ndarray.min(axis=None, out=None, keepdims=False) Return the minimum along a given axis. Refer to
ndarray.partition(kth, axis=-1, kind='introselect', order=None) Rearranges the elements in the array in such a way that
ndarray.itemset(*args) Insert scalar into an array (scalar is cast to array?s dtype, if possible) There must be
Page 1 of 13