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