|
inlineconstexpr |
Returns a logical true if and only if the element value is not imaginary.
For real entries 0 is the only imaginary number: its real part is 0!
Defined in Header
Parameters
Return value
Returns elementwise x != 0
for real entries.
Masked Call
The call eve;is_not_imag[mask](x)
provides a masked version of eve::is_not_imag
which is equivalent to if_else (mask, is_not_imag(x), eve::false( eve::as(x)))
.
Example