Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
Ctrl+K
JAX  documentation - Home

jax.numpy.i0

Contents

jax.numpy.i0#

jax.numpy.i0(x)[source]#

Calculate modified Bessel function of first kind, zeroth order.

JAX implementation ofnumpy.i0().

Modified Bessel function of first kind, zeroth order is defined by:

\[\mathrm{i0}(x) = I_0(x) = \sum_{k=0}^{\infty} \frac{(x^2/4)^k}{(k!)^2}\]
Parameters:

x (ArrayLike) – scalar or array. Specifies the argument of Bessel function. Complex inputsare not supported.

Returns:

An array containing the corresponding values of the modified Bessel functionofx.

Return type:

Array

See also

Examples

>>>x=jnp.array([-2,-1,0,1,2])>>>jnp.i0(x)Array([2.2795851, 1.266066 , 1.0000001, 1.266066 , 2.2795851], dtype=float32)
Contents

[8]ページ先頭

©2009-2025 Movatter.jp