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

Signature de la fonction k0

Description

k0.__doc__

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

k0(x)

Modified Bessel function of the second kind of order 0, :math:`K_0`.

This function is also sometimes referred to as the modified Bessel
function of the third kind of order 0.

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

Returns
-------
K : ndarray
    Value of the modified Bessel function :math:`K_0` at `x`.

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

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

See also
--------
kv
k0e

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