ndarray.__hex__() <==> hex(x)
ndarray.min(axis=None, out=None, keepdims=False) Return the minimum along a given axis. Refer to
ndarray.__long__() <==> long(x)
ndarray.partition(kth, axis=-1, kind='introselect', order=None) Rearranges the elements in the array in such a way that
ndarray.__getitem__ x.__getitem__(y) <==> x[y]
ndarray.reshape(shape, order='C') Returns an array containing the same data with a new shape. Refer to
ndarray.size Number of elements in the array. Equivalent to np.prod(a.shape), i.e., the product of
ndarray.prod(axis=None, dtype=None, out=None, keepdims=False) Return the product of the array elements over the given axis
ndarray.round(decimals=0, out=None) Return a with each element rounded to the given number of decimals.
ndarray.argsort(axis=-1, kind='quicksort', order=None) Returns the indices that would sort this array. Refer to
Page 2 of 13