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

Signature de la fonction it2j0y0

Description

it2j0y0.__doc__

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

it2j0y0(x, out=None)

Integrals related to Bessel functions of the first kind of order 0.

Computes the integrals

.. math::

    \int_0^x \frac{1 - J_0(t)}{t} dt \\
    \int_x^\infty \frac{Y_0(t)}{t} dt.

For more on :math:`J_0` and :math:`Y_0` see `j0` and `y0`.

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

Returns
-------
ij0 : scalar or ndarray
    The integral for `j0`
iy0 : scalar or ndarray
    The integral for `y0`