mindspore.ops.exp

mindspore.ops.exp(input)[源代码]

逐元素计算 input 的指数。

\[out_i = e^{x_i}\]
参数:
  • input (Tensor) - 指数函数的输入Tensor。

返回:

Tensor,具有与 input 相同的数据类型和shape。

异常:
  • TypeError - input 不是Tensor。

支持平台:

Ascend GPU CPU

样例:

>>> x = Tensor(np.array([1.0, 2.0, 4.0]), mindspore.float32)
>>> output = ops.exp(x)
>>> print(output)
[ 2.718282  7.389056 54.598152]