fn
modified_bessel_i1
→Tensormodified_bessel_i1(x: Tensor)Modified Bessel function of the first kind, order 1.
Convenience wrapper around i1. Computes ,
the order-one regular solution of the modified Bessel equation,
forming a natural pair with for log-density evaluation
of Rician / Bessel-family distributions.
Parameters
xTensorInput tensor; any floating-point dtype.
Returns
Tensorelement-wise.
Notes
Series form:
Odd function; ; grows like at
infinity. Use i1e for stable evaluation at large |x|.
Examples
>>> import lucid
>>> from lucid.special import modified_bessel_i1
>>> modified_bessel_i1(lucid.tensor([0.0, 1.0, 3.0]))
Tensor([0.0000, 0.5652, 3.9534])