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

Signature de la fonction iti0k0

Description

iti0k0.__doc__

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

iti0k0(x, out=None)

Integrals of modified Bessel functions of order 0.

Computes the integrals

.. math::

    \int_0^x I_0(t) dt \\
    \int_0^x K_0(t) dt.

For more on :math:`I_0` and :math:`K_0` see `i0` and `k0`.

Parameters
----------
x : array_like
    Values at which to evaluate the integrals.
out : tuple of ndarrays, optional
    Optional output arrays for the function results.

Returns
-------
ii0 : scalar or ndarray
    The integral for `i0`
ik0 : scalar or ndarray
    The integral for `k0`