mindspore.ops.Sinh
- class mindspore.ops.Sinh[源代码]
逐元素计算输入Tensor的双曲正弦。
详情请查看
mindspore.ops.sinh()
。- 支持平台:
Ascend
GPU
CPU
样例:
>>> sinh = ops.Sinh() >>> x = Tensor(np.array([0.62, 0.28, 0.43, 0.62]), mindspore.float32) >>> output = sinh(x) >>> print(output) [0.6604918 0.28367308 0.44337422 0.6604918 ]