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

Signature de la fonction besselpoly

Description

besselpoly.__doc__

besselpoly(x1, x2, x3, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj])

besselpoly(a, lmb, nu, out=None)

Weighted integral of the Bessel function of the first kind.

Computes

.. math::

   \int_0^1 x^\lambda J_\nu(2 a x) \, dx

where :math:`J_\nu` is a Bessel function and :math:`\lambda=lmb`,
:math:`\nu=nu`.

Parameters
----------
a : array_like
    Scale factor inside the Bessel function.
lmb : array_like
    Power of `x`
nu : array_like
    Order of the Bessel function.
out : ndarray, optional
    Optional output array for the function results.

Returns
-------
scalar or ndarray
    Value of the integral.