!38354 Add the chinese api document for BesselI0e and BesselI1e

Merge pull request !38354 from maoyaomin/mym_fix
This commit is contained in:
i-robot 2022-07-19 07:04:06 +00:00 committed by Gitee
commit 83df02d43a
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,26 @@
mindspore.ops.BesselI0e
========================
.. py:class:: mindspore.ops.BesselI0e(x)
逐元素计算输入数据的BesselI0e函数值。
计算公式定义如下:
.. math::
BesselI0e(x) = \exp(|x|) * bessel\_i0(x)
其中bessel_i0是第一类0阶的Bessel函数。
**参数:**
- **x** (Tensor) - 任意维度的Tensor。数据类型应为float16float32或float64。
**返回:**
Tensorshape和数据类型与 `x` 相同。
**异常:**
- **TypeError** - `x` 不是Tensor。
- **TypeError** - `x` 的数据类型不是float16float32或float64。

View File

@ -0,0 +1,26 @@
mindspore.ops.BesselI1e
========================
.. py:class:: mindspore.ops.BesselI1e(x)
逐元素计算输入数据的BesselI1e函数值。
计算公式定义如下:
.. math::
BesselI1e(x) = \exp(|x|) * bessel\_i1(x)
其中bessel_i1是第一类1阶的Bessel函数。
**参数:**
- **x** (Tensor) - 任意维度的Tensor。数据类型应为float16float32或float64。
**返回:**
Tensorshape和数据类型与 `x` 相同。
**异常:**
- **TypeError** - `x` 不是Tensor。
- **TypeError** - `x` 的数据类型不是float16float32或float64。