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

Signature de la fonction chdtriv

Description

chdtriv.__doc__

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

chdtriv(p, x, out=None)

Inverse to `chdtr` with respect to `v`.

Returns `v` such that ``chdtr(v, x) == p``.

Parameters
----------
p : array_like
    Probability that the Chi square random variable is less than
    or equal to `x`.
x : array_like
    Nonnegative input.
out : ndarray, optional
    Optional output array for the function results.

Returns
-------
scalar or ndarray
    Degrees of freedom.

See Also
--------
chdtr, chdtrc, chdtri

References
----------
.. [1] Chi-Square distribution,
    https://www.itl.nist.gov/div898/handbook/eda/section3/eda3666.htm

Examples
--------
>>> import scipy.special as sc

It inverts `chdtr`.

>>> p, x = 0.5, 1
>>> sc.chdtr(sc.chdtriv(p, x), x)
0.5000000000202172
>>> v = 1
>>> sc.chdtriv(sc.chdtr(v, x), v)
1.0000000000000013