mindspore/docs/api/api_python/ops/mindspore.ops.func_asinh.rst

20 lines
438 B
ReStructuredText
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

mindspore.ops.asinh
====================
.. py:function:: mindspore.ops.asinh(x)
计算输入元素的反双曲正弦。
.. math::
out_i = \sinh^{-1}(input_i)
参数:
- **x** (Tensor) - 需要计算反双曲正弦函数的输入,其秩的范围必须在[0, 7]。
返回:
Tensor数据类型和shape与 `x` 相同。
异常:
- **TypeError** - 如果 `x` 不是Tensor。