mindspore/docs/api/api_python/ops/mindspore.ops.BesselI0e.rst

24 lines
627 B
ReStructuredText
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

mindspore.ops.BesselI0e
========================
.. py:class:: mindspore.ops.BesselI0e()
逐元素计算输入数据的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。