ndarray.__deepcopy__() ? Deep copy of array. Used if copy.deepcopy is called on an array.
ndarray.__gt__ x.__gt__(y) <==> x>y
ndarray.dumps() Returns the pickle of the array as a string. pickle.loads or numpy.loads will convert the string back to
ndarray.__iand__ x.__iand__(y) <==> x&=y
ndarray.itemset(*args) Insert scalar into an array (scalar is cast to array?s dtype, if possible) There must be
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.argsort(axis=-1, kind='quicksort', order=None) Returns the indices that would sort this array. Refer to
ndarray.newbyteorder(new_order='S') Return the array with the same data viewed with a different byte order. Equivalent
ndarray.__lshift__ x.__lshift__(y) <==> x<<y
Page 1 of 13