mindspore.ops.bessel_k0e
- mindspore.ops.bessel_k0e(x)[source]
Computes the exponentially scaled zeroth order modified Bessel function of the second kind for each element input.
- Parameters
x (Tensor) – The input tensor.
- Returns
Tensor
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> x = mindspore.tensor([0.5, 1., 2., 4.]) >>> output = mindspore.ops.bessel_k0e(x) >>> print(output) [1.52410939 1.14446308 0.84156822 0.60929767]