conjf, conj, conjl
From cppreference.com
Defined in header
<complex.h>
|
||
(since C99) | ||
(since C99) | ||
(since C99) | ||
Computes the complex conjugate of z
by reversing the sign of the imaginary part.
Contents |
[edit] Parameters
z | - | complex argument |
[edit] Return value
The complex conjugate of z
.
[edit] Example
Run this code
Output:
1.000000-2.000000i
[edit] See also
C++ documentation for conj
|