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

Signature de la fonction btdtr

Description

btdtr.__doc__

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

btdtr(a, b, x)

Cumulative distribution function of the beta distribution.

Returns the integral from zero to `x` of the beta probability density
function,

.. math::
    I = \int_0^x \frac{\Gamma(a + b)}{\Gamma(a)\Gamma(b)} t^{a-1} (1-t)^{b-1}\,dt

where :math:`\Gamma` is the gamma function.

Parameters
----------
a : array_like
    Shape parameter (a > 0).
b : array_like
    Shape parameter (b > 0).
x : array_like
    Upper limit of integration, in [0, 1].

Returns
-------
I : ndarray
    Cumulative distribution function of the beta distribution with
    parameters `a` and `b` at `x`.

See Also
--------
betainc

Notes
-----
This function is identical to the incomplete beta integral function
`betainc`.

Wrapper for the Cephes [1]_ routine `btdtr`.

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