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 i1e - module scipy.special

Signature de la fonction i1e

Description

i1e.__doc__

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

i1e(x)

Exponentially scaled modified Bessel function of order 1.

Defined as::

    i1e(x) = exp(-abs(x)) * i1(x)

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

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

Notes
-----
The range is partitioned into the two intervals [0, 8] and (8, infinity).
Chebyshev polynomial expansions are employed in each interval. The
polynomial expansions used are the same as those in `i1`, but
they are not multiplied by the dominant exponential factor.

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

See also
--------
iv
i1

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