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