torch.i0¶
-
torch.
i0
(input, *, out=None) → Tensor¶ Computes the zeroth order modified Bessel function of the first kind for each element of
input
.- Parameters
input (Tensor) – the input tensor
- Keyword Arguments
out (Tensor, optional) – the output tensor.
Example:
>>> torch.i0(torch.arange(5, dtype=torch.float32)) tensor([ 1.0000, 1.2661, 2.2796, 4.8808, 11.3019])