mindspore.ops.Cosh
- class mindspore.ops.Cosh[source]
Computes hyperbolic cosine of input element-wise.
Refer to
mindspore.ops.cosh()
for more details.- Inputs:
x (Tensor) - The input Tensor.
- Outputs:
Tensor, has the same shape and dtype as x.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> import numpy as np >>> from mindspore import Tensor, ops >>> 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] >>> x = Tensor(2.1, mindspore.float32) >>> output = cosh(x) >>> print(output) 4.144313