|
inlineconstexpr |
Callable object computing \(e^{-x^2}\).
Defined in Header
Parameters
x: floating value.z: complex value.Parameters
x: floating real or complex value.
Return value
Returns the elementwise exponential of minus the square of x
Masked Call
The call eve::expmx2[mask](x, ...) provides a masked version of eve::expmx2 which is equivalent to if_else (mask, expmx2(x, ...), x).
Example