cexp, cexpf, cexpl

Visual Studio 2015
 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at cexp, cexpf, cexpl.

Compute the base-e exponential of a complex number.

_Dcomplex cexp(   
   _Dcomplex z   
);  
_Fcomplex cexp(   
   _Fcomplex z   
);  // C++ only  
_Lcomplex cexp(   
   _Lcomplex z   
);  // C++ only  
_Fcomplex cexpf(   
  _Fcomplex z   
);  
_Lcomplex cexpl(   
   _Lcomplex z   
);  

Parameters

z
A complex number that represents the exponent.

The value of e raised to the power of z.

Because C++ allows overloading, you can call overloads of cexp that take and return _Fcomplex and _Lcomplex values. In a C program, cexp always takes and returns a _Dcomplex value.

RoutineC headerC++ header
cexp, cexpf, cexpl<complex.h><complex.h>

For compatibility information, see Compatibility.

Alphabetical Function Reference
cpow, cpowf, cpowl
clog10, clog10f, clog10l
clog, clogf, clogl

Show: