add the chinese api doc for BeseelI0e and BesselI1e

This commit is contained in:
maoyaomin 2022-07-19 09:55:45 +08:00
parent 614230f4a4
commit f46e93f4a0
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。