Skip to contents

I0

Usage

torch_i0(self)

Arguments

self

(Tensor) the input tensor

i0(input, *, out=None) -> Tensor

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

outi=I0(inputi)=k=0(inputi2/4)k(k!)2

Examples

if (torch_is_installed()) {

torch_i0(torch_arange(start = 0, end = 5, dtype=torch_float32()))
}
#> torch_tensor
#>   1.0000
#>   1.2661
#>   2.2796
#>   4.8808
#>  11.3019
#>  27.2399
#> [ CPUFloatType{6} ]