Returns the complex conjugate of a complex number, negating its imaginary part.
The complex conjugate of z.
assert(conj(complex(1.0)) == complex(1.0)); assert(conj(complex(1.0, 2.0)) == complex(1.0, -2.0));
Returns the complex conjugate of a complex number, negating its imaginary part.