public conjugate() as Complex<FLOAT_TYPE>:
Returns the conjugate of the complex number.
The conjugate of the complex number. c = Complex<>(3, 4) c_conjugate = c.conjugate() # c_conjugate is Complex<>(3, -4)
c = Complex<>(3, 4) c_conjugate = c.conjugate() # c_conjugate is Complex<>(3, -4)