fn
modified_bessel_i0
→Tensormodified_bessel_i0(x: Tensor)Modified Bessel function of the first kind, order 0.
Convenience alias for lucid.i0. Computes ,
the order-zero regular solution of the modified Bessel equation,
used in the von Mises density and rotational kernel families.
Parameters
xTensorInput tensor; any floating-point dtype.
Returns
Tensor element-wise, same shape and dtype as x.
Notes
Series form:
Even function; ; grows as
for large argument — use
i0e for numerical stability at large |x|.
Examples
>>> import lucid
>>> from lucid.special import modified_bessel_i0
>>> modified_bessel_i0(lucid.tensor([0.0, 1.0, 3.0]))
Tensor([1.0000, 1.2661, 4.8808])