function template
std::exp
<complex>
template<class T> complex<T> exp (const complex<T>& x);
Return exponential of complex
Returns the base-e exponential of the complex number
x.
This overloads
cmath's exp function.
Parameters
- x
- Complex value.
Return value
Exponential of
x.
See also
- log
- Return natural logarithm of complex (function template)
- pow
- Return complex power (function template)
- exp (cmath)
- Compute exponential function (function
)