[back] [prev] [next] [index] [root]

 


Exp

Returns the exponential of a number.

Syntax:

y := Exp(x);

complex
  y  
complex
  x  

See also:  Log

Description:

Given a number x the function returns e^{ x}. The computation is done in the current precision of the real (complex) field.


Example:


kash> Exp(1);
2.718281828459045235360287471352662497757247093699
kash> i := Comp(0, 1);
1*i
kash> Exp(i);
> 0.5403023058681397174009366074429766037323104206179222 + 0.8414709848078965066\
52502321630298999622563060798371*i


<- back[back] [prev] [next] [index] [root]