Scilab Function
Last update : 14/2/2006
exp - element-wise exponential
Calling Sequence
-
exp(X)
Parameters
-
X
: scalar,vector or matrix with real or complex entries.
Description
exp(X)
is the (element-wise) exponential of the entries of
X
.
Examples
x=[1,2,3+%i];
log(exp(x)) //element-wise
2^x
exp(x*log(2))
See Also
coff
,
log
,
expm
,