mindspore.ops.Cosh

class mindspore.ops.Cosh(*args, **kwargs)[source]

Computes hyperbolic cosine of input element-wise.

Inputs:
  • input_x (Tensor) - The shape of tensor is \((x_1, x_2, ..., x_R)\).

Outputs:

Tensor, has the same shape as input_x.

Raises

TypeError – If input_x is not a Tensor.

Supported Platforms:

Ascend CPU

Examples

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