mindspore.ops.Cosh

class mindspore.ops.Cosh[source]

Computes hyperbolic cosine of input element-wise.

Refer to mindspore.ops.cosh() for more details.

Supported Platforms:

Ascend GPU CPU

Examples

>>> 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]