exp()

The exponential function is used to calculate powers of e. Given a complex number, x, the exp(x) function calculates e to the power of x (i.e. ex)

Syntax
y = exp(x)

Arguments
Name Description Range Type Required
x number (-∞, ∞) integer, real, complex yes

Examples

a = exp(1)
returns 2.71828
b = exp(1+j1)
returns 1.469 + j*2.287

Defined in

Built in

See Also

abs(), cint(), float(), int(), log(), log10(), pow(), sgn(), sqrt()

Notes/Equations

If
x = a+j*b
then
ex = ea+j*b = (ea)*(ej*b) = (ea)*(cos(b)+j*sin(b))

 

Privacy Statement  | Terms of Use  | Legal | Contact Us  | © Agilent 2000-2008 

Contents
Additional Resources