function template
<complex>

std::exp

template<class T> complex<T> exp (const complex<T>& x);
Exponential of complex
Returns the base-e exponential of the complex number x.

This is the complex version of the exp function (defined in <cmath>).

Parameters

x
Complex value.

Return value

Exponential of x.

See also