exp
Computes Euler's number e raised to the power of the value Array.
Example:
arrayOf(1, 2, 3, 4).exp()
// [2.718281828459045, 7.38905609893065, 20.085536923187668, 54.598150033144236]
Content copied to clipboard
Since
1.1.0
See also
exp
Computes Euler's number e raised to the power of the value Iterable.
Example:
listOf(1, 2, 3, 4).exp()
// [2.718281828459045, 7.38905609893065, 20.085536923187668, 54.598150033144236]
Content copied to clipboard
Since
1.1.0
See also
exp