设计
规格
API
API映射
迁移指南
FAQ
RELEASE NOTES
逐元素计算双曲余弦值。
Tensor,数据类型和shape与 x 相同。
Ascend GPU CPU
Ascend
GPU
CPU
样例:
>>> from mindspore import Tensor >>> a = Tensor(np.array([0.24, 0.83, 0.31, 0.09]), mindspore.float32) >>> output = a.cosh() >>> print(output) [1.0289385 1.364684 1.048436 1.0040528]