mindspore.ops.BesselI1e
- class mindspore.ops.BesselI1e[源代码]
逐元素计算指数缩放第一类一阶修正贝塞尔函数。
计算公式定义如下:
\[\begin{split}\begin{array}{ll} \\ \text I_{1}e(x)=e^{(-|x|)} * I_{1}(x)=e^{(-|x|)} * \sum_{m=0}^ {\infty} \frac{x^{2m+1}}{2^{2m+1} m ! (m+1) !} \end{array}\end{split}\]其中 \(I_{1}\) 是第一类一阶修正Bessel函数。
- 输入:
x (Tensor) - 输入Tensor。数据类型应为float16,float32或float64。
- 输出:
Tensor,shape和数据类型与 x 相同。
- 异常:
TypeError - x 不是Tensor。
TypeError - x 的数据类型不是float16,float32或float64。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> import mindspore >>> import numpy as np >>> from mindspore import Tensor, ops >>> bessel_i1e = ops.BesselI1e() >>> x = Tensor(np.array([0.24, 0.83, 0.31, 0.09]), mindspore.float32) >>> output = bessel_i1e(x) >>> print(output) [0.09507662 0.19699717 0.11505538 0.04116856]