scipy.special.owens_t#

scipy.special.owens_t(h, a, out=None) = <ufunc 'owens_t'>#

欧文’s T 函数。

函数 T(h, a) 给出了事件 (X > h 且 0 < Y < a * X) 的概率,其中 X 和 Y 是独立的标准正态随机变量。

参数:
h: array_like

输入值。

a: array_like

输入值。

ndarray,可选

函数结果的可选输出数组

返回:
t: 标量或数组

事件的概率 (X > h 且 0 < Y < a * X),其中 X 和 Y 是独立的标准正态随机变量。

参考文献

[1]

M. Patefield and D. Tandy, “Fast and accurate calculation of Owen’s T Function”, Statistical Software vol. 5, pp. 1-25, 2000.

示例

>>> from scipy import special
>>> a = 3.5
>>> h = 0.78
>>> special.owens_t(h, a)
0.10877216734852274