exp

Help Contents Arithmetic Irrational Functions exp
Power Log10

exp num


outputs e (2.718281828+) to the input power.

Examples:

exp 0		;1  ;-)
exp 1		;2.71828  ;-)
exp 2		;7.38906  ;-)
exp 1i*pi		;-1+1.22461e-016i  ;-)	nearly -1, so nearly correct
exp 1i*2*pi		;1-2.44921e-016i  ;-)  nearly 1, so nearly correct
exp (list 0 1 2 1i*pi 2i*pi)
;[1 2.71828 7.38906 -1+1.22461e-016i 1-2.44921e-016i] ;-)

Examples:

References:

Power Log10