|
inlineconstexpr |
Computes the the conjugate value.
Defined in Header
Parameters
Return value
Returns the conjugate of its argument. For real inputs the call reduces to identity.
Masked Call
The call eve;conj[mask](x)
provides a masked version of eve::conj
which is equivalent to if_else (mask, conj(x), x)
.
Example