mindspore.ops.bessel_k1

View Source On Gitee
mindspore.ops.bessel_k1(x)[source]

Computes the first order modified Bessel function of the second kind for each element input.

K1(x)=limν1(π2)Iν(x)Iν(x)sin(νπ)=0excoshtcosh(t)dt
Parameters

x (Tensor) – The input tensor.

Returns

Tensor

Supported Platforms:

GPU CPU

Examples

>>> import mindspore
>>> x = mindspore.tensor([0.5, 1., 2., 4.])
>>> output = mindspore.ops.bessel_k1(x)
>>> print(output)
[1.65644112  0.60190723  0.13986588  0.0124835]