scipy.special.nctdtrinc#

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

计算非中心 t 分布的非中心性参数。

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

参数:
dfarray_like

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

parray_like

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

tarray_like

分位数,即积分的上限。

outndarray, 可选

函数结果的可选输出数组

返回:
nc标量或 ndarray

非中心性参数

另请参见

nctdtr

非中心 t 分布的 CDF。

nctdtrit

非中心 t 分布的逆 CDF (iCDF)。

nctdtridf

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

示例

>>> from scipy.special import nctdtr, nctdtrinc

计算几个 nc 值的 CDF

>>> nc = [0.5, 1.5, 2.5]
>>> p = nctdtr(3, nc, 1.5)
>>> p
array([0.77569497, 0.45524533, 0.1668691 ])

计算逆。我们如预期恢复 nc 的值

>>> nctdtrinc(3, p, 1.5)
array([0.5, 1.5, 2.5])