mindspore.ops.Cosh

class mindspore.ops.Cosh[源代码]

逐元素计算输入数据的双曲余弦。

更多详情请查看: mindspore.ops.cosh()

输入:
  • x (Tensor) - Tensor的shape为 \((N,*)\) ,其中 \(*\) 表示任意数量的附加维度。

输出:

Tensor,shape和数据类型与 x 相同。

支持平台:

Ascend GPU CPU

样例:

>>> cosh = ops.Cosh()
>>> x = Tensor(np.array([0.24, 0.83, 0.31, 0.09]), mindspore.float32)
>>> output = cosh(x)
>>> print(output)
[1.0289385 1.364684 1.048436 1.0040528]