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

Signature de la fonction yn

Description

yn.__doc__

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

yn(n, x)

Bessel function of the second kind of integer order and real argument.

Parameters
----------
n : array_like
    Order (integer).
z : array_like
    Argument (float).

Returns
-------
Y : ndarray
    Value of the Bessel function, :math:`Y_n(x)`.

Notes
-----
Wrapper for the Cephes [1]_ routine `yn`.

The function is evaluated by forward recurrence on `n`, starting with
values computed by the Cephes routines `y0` and `y1`. If `n = 0` or 1,
the routine for `y0` or `y1` is called directly.

See also
--------
yv : For real order and real or complex argument.

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