逐元素计算输入tensor的第一类一阶贝塞尔函数值。
x (Tensor) - 输入tensor。
Tensor
Ascend GPU CPU
Ascend
GPU
CPU
样例:
>>> import mindspore >>> x = mindspore.tensor([0.5, 1., 2., 4.]) >>> output = mindspore.ops.bessel_j1(x) >>> print(output) [0.24226846 0.44005059 0.57672481 -0.06604333]