逐元素计算输入tensor的第一类零阶修正贝塞尔函数值。
x (Tensor) - 输入tensor。
Tensor
GPU CPU
GPU
CPU
样例:
>>> import mindspore >>> x = mindspore.tensor([-1., -0.5, 0.5, 1.]) >>> output = mindspore.ops.bessel_i0(x) >>> print(output) [1.266066 1.0634835 1.0634835 1.266066]