add the chinese api doc for BeseelI0e and BesselI1e
This commit is contained in:
parent
614230f4a4
commit
f46e93f4a0
|
@ -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。数据类型应为float16,float32或float64。
|
||||
|
||||
**返回:**
|
||||
|
||||
Tensor,shape和数据类型与 `x` 相同。
|
||||
|
||||
**异常:**
|
||||
|
||||
- **TypeError** - `x` 不是Tensor。
|
||||
- **TypeError** - `x` 的数据类型不是float16,float32或float64。
|
|
@ -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。数据类型应为float16,float32或float64。
|
||||
|
||||
**返回:**
|
||||
|
||||
Tensor,shape和数据类型与 `x` 相同。
|
||||
|
||||
**异常:**
|
||||
|
||||
- **TypeError** - `x` 不是Tensor。
|
||||
- **TypeError** - `x` 的数据类型不是float16,float32或float64。
|
Loading…
Reference in New Issue