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