jax.scipy.special.i0e

Contents

jax.scipy.special.i0e#

jax.scipy.special.i0e(x)[source]#

Exponentially scaled modified Bessel function of order 0.

LAX-backend implementation of scipy.special.i0e().

Original docstring below.

Defined as:

i0e(x) = exp(-abs(x)) * i0(x).
Parameters:

x (array_like) – Argument (float)

Returns:

I – Value of the exponentially scaled modified Bessel function of order 0 at x.

Return type:

scalar or ndarray

References