complex (1) | template<class T> complex<T> conj (const complex<T>& x); |
---|
complex (1) | template<class T> complex<T> conj (const complex<T>& x); |
---|---|
arithmetic type (2) | complex<double> conj (ArithmeticType x); |
(real,imag)
is (real,-imag)
.complex<double>
, except if the argument is float
or long double
(in which case, the return type is the complex instantiation for that type: either complex<float>
or complex<long double>
).
|
|
The conjugate of (10,2) is (10,-2) |