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

Signature de la fonction chdtri

Description

chdtri.__doc__

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

chdtri(v, p, out=None)

Inverse to `chdtrc` with respect to `x`.

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

Parameters
----------
v : array_like
    Degrees of freedom.
p : array_like
    Probability.
out : ndarray, optional
    Optional output array for the function results.

Returns
-------
x : scalar or ndarray
    Value so that the probability a Chi square random variable
    with `v` degrees of freedom is greater than `x` equals `p`.

See Also
--------
chdtrc, chdtr, chdtriv

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

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

It inverts `chdtrc`.

>>> v, p = 1, 0.3
>>> sc.chdtrc(v, sc.chdtri(v, p))
0.3
>>> x = 1
>>> sc.chdtri(v, sc.chdtrc(v, x))
1.0