mindspore.ops.coo_sinh
=======================

.. image:: https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/website-images/r2.2/resource/_static/logo_source.svg
    :target: https://gitee.com/mindspore/mindspore/blob/r2.2/docs/api/api_python/ops/mindspore.ops.func_coo_sinh.rst
    :alt: 查看源文件


.. py:function:: mindspore.ops.coo_sinh(x: COOTensor)

    逐元素计算输入COOTensor的双曲正弦。

    .. math::
        out_i = \sinh(x_i)

    参数:
        - **x** (COOTensor) - coo_sinh的输入COOTensor。

    返回:
        COOTensor,shape与 `x` 相同。

    异常:
        - **TypeError** - 如果 `x` 不是COOTensor。