ndarray.dumps() Returns the pickle of the array as a string. pickle.loads or numpy.loads will convert the string back to
ndarray.__int__() <==> int(x)
ndarray.__contains__ x.__contains__(y) <==> y in x
ndarray.__iand__ x.__iand__(y) <==> x&=y
ndarray.__deepcopy__() ? Deep copy of array. Used if copy.deepcopy is called on an array.
ndarray.size Number of elements in the array. Equivalent to np.prod(a.shape), i.e., the product of
ndarray.compress(condition, axis=None, out=None) Return selected slices of this array along given axis. Refer to
ndarray.getfield(dtype, offset=0) Returns a field of the given array as a certain type. A field is a view of the
ndarray.item(*args) Copy an element of an array to a standard Python scalar and return it.
ndarray.__gt__ x.__gt__(y) <==> x>y
Page 1 of 13