ndarray.__xor__ x.__xor__(y) <==> x^y
ndarray.setfield(val, dtype, offset=0) Put a value into a specified place in a field defined by a data-type. Place
ndarray.__nonzero__ x.__nonzero__() <==> x != 0
ndarray.__pos__ x.__pos__() <==> +x
ndarray.__ior__ x.__ior__(y) <==> x|=y
ndarray.conjugate() Return the complex conjugate, element-wise. Refer to numpy.conjugate for full
ndarray.all(axis=None, out=None, keepdims=False) Returns True if all elements evaluate to True. Refer to
ndarray.__str__() <==> str(x)
ndarray.argmax(axis=None, out=None) Return indices of the maximum values along the given axis. Refer to
ndarray.__isub__ x.__isub__(y) <==> x-=y
Page 11 of 13