Calculate the exponential function of each element in an array.
> exp([0, 1, 2])[1, 2.718281828459045, 7.38905609893065] Copy
> exp([0, 1, 2])[1, 2.718281828459045, 7.38905609893065]
The array of numbers.
An array with the exponential function of each input element.
Calculate the exponential function of each element in an array.
Example