ndarray.conjugate() Return the complex conjugate, element-wise. Refer to numpy.conjugate for full
ndarray.setfield(val, dtype, offset=0) Put a value into a specified place in a field defined by a data-type. Place
ndarray.__len__() <==> len(x)
ndarray.__pos__ x.__pos__() <==> +x
ndarray.data Python buffer object pointing to the start of the array?s data.
ndarray.__isub__ x.__isub__(y) <==> x-=y
ndarray.__ior__ x.__ior__(y) <==> x|=y
ndarray.__nonzero__ x.__nonzero__() <==> x != 0
ndarray.__array_wrap__(obj) ? Object of same type as ndarray object a.
ndarray.conj() Complex-conjugate all elements. Refer to numpy.conjugate for full documentation.
Page 11 of 13