Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « scipy.special »

Fonction i0 - module scipy.special

Signature de la fonction i0

Description

i0.__doc__

i0(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj])

i0(x)

Modified Bessel function of order 0.

Defined as,

.. math::
    I_0(x) = \sum_{k=0}^\infty \frac{(x^2/4)^k}{(k!)^2} = J_0(\imath x),

where :math:`J_0` is the Bessel function of the first kind of order 0.

Parameters
----------
x : array_like
    Argument (float)

Returns
-------
I : ndarray
    Value of the modified Bessel function of order 0 at `x`.

Notes
-----
The range is partitioned into the two intervals [0, 8] and (8, infinity).
Chebyshev polynomial expansions are employed in each interval.

This function is a wrapper for the Cephes [1]_ routine `i0`.

See also
--------
iv
i0e

References
----------
.. [1] Cephes Mathematical Functions Library,
       http://www.netlib.org/cephes/