mx.nd.exp

Description

Returns element-wise exponential value of the input.

\[exp(x) = e^x \approx 2.718^x\]

Example:

exp([0, 1, 2]) = [1., 2.71828175, 7.38905621]

The storage type of ``exp`` output is always dense

Arguments

Argument

Description

data

NDArray-or-Symbol.

The input array.