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