scipy.special.nctdtrit#

scipy.special.nctdtrit(df, nc, p, out=None) = <ufunc 'nctdtrit'>#

非中心 t 分布的逆累积分布函数。

有关更多详细信息,请参阅 nctdtr

参数:
dfarray_like

分布的自由度。应在范围 (0, inf) 内。

ncarray_like

非中心性参数。应在范围 (-1e6, 1e6) 内。

parray_like

CDF 值,在范围 (0, 1] 内。

outndarray,可选

函数结果的可选输出数组

返回:
t标量或 ndarray

分位数

另请参阅

nctdtr

非中心 t 分布的 CDF。

nctdtridf

计算自由度,给定 CDF 和 iCDF 值。

nctdtrinc

计算非中心性参数,给定 CDF iCDF 值。

示例

>>> from scipy.special import nctdtr, nctdtrit

计算几个 t 值的 CDF

>>> t = [0.5, 1, 1.5]
>>> p = nctdtr(3, 1, t)
>>> p
array([0.29811049, 0.46922687, 0.6257559 ])

计算反函数。我们如预期地恢复了 t 的值

>>> nctdtrit(3, 1, p)
array([0.5, 1. , 1.5])