scipy.special.owens_t#
- scipy.special.owens_t(h, a, out=None) = <ufunc 'owens_t'>#
Owen’s T 函數。
函數 T(h, a) 給出事件 (X > h 且 0 < Y < a * X) 的機率,其中 X 和 Y 是獨立的標準常態隨機變數。
- 參數:
- h:array_like
輸入值。
- a:array_like
輸入值。
- outndarray, 選擇性
函數結果的選擇性輸出陣列
- 回傳值:
- t:純量或 ndarray
事件 (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