29 lines
805 B
ReStructuredText
29 lines
805 B
ReStructuredText
mindspore.ops.BesselK1e
|
||
=======================
|
||
|
||
.. py:class:: mindspore.ops.BesselK1e
|
||
|
||
逐元素计算指数缩放第二类一阶修正Bessel函数值。
|
||
|
||
计算公式定义如下:
|
||
|
||
.. math::
|
||
\begin{array}{ll} \\
|
||
K_{1}e(x)= e^{(-|x|)} * K_{1}(x) = e^{(-|x|)} * \int_{0}
|
||
^{\infty} e^{-x \cosh t} \cosh (t) d t
|
||
\end{array}
|
||
|
||
其中 :math:`K_{1}` 是第二类一阶修正Bessel函数。
|
||
|
||
.. warning::
|
||
这是一个实验性API,后续可能修改或删除。
|
||
|
||
输入:
|
||
- **x** (Tensor) - 输入Tensor。数据类型应为float16、float32或float64。
|
||
|
||
输出:
|
||
Tensor,shape和数据类型与 `x` 相同。
|
||
|
||
异常:
|
||
- **TypeError** - `x` 不是float16、float32或float64数据类型的Tensor。
|