mindspore.ops.Cosh
- class mindspore.ops.Cosh[source]
Computes hyperbolic cosine of input element-wise.
\[out_i = \cosh(input_i)\]- Inputs:
x (Tensor) - The shape of tensor is \((N,*)\) where \(*\) means, any number of additional dimensions, its rank should less than 8.
- Outputs:
Tensor, has the same shape as x.
- Raises
TypeError – If x is not a Tensor.
- Supported Platforms:
Ascend
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]