Man Scilab

exp
Scilab Function

exp - element-wise exponential

Calling Sequence

exp(X)

Parameters

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 ,  

Back