Conjugate
it returns the complex conjugate of the value
complex Conjugate( )
The complex conjugate
EX1
void complex_Conjugate() { complex cc(1.2, 3.4); complex cconj = cc.Conjugate(); // Display the values: out_complex("original value = ", cc); // Result is "original value = 1.200000+3.400000i" out_complex("conjugate value = ", cconj); // Result is "conjugate value = 1.200000-3.400000i" }
origin.h