本文簡要介紹 python 語言中 scipy.special.owens_t
的用法。
用法:
scipy.special.owens_t(h, a, out=None) = <ufunc 'owens_t'>#
歐文的 T 函數。
函數 T(h, a) 給出事件的概率(X > h 和 0 < Y < a * X),其中 X 和 Y 是獨立的標準正態隨機變量。
- h: array_like:
輸入值。
- a: array_like:
輸入值。
- out: ndarray,可選
函數結果的可選輸出數組
- t:標量或 ndarray
事件的概率(X > h 和 0 < Y < a * X),其中 X 和 Y 是獨立的標準正態隨機變量。
參數 ::
返回 ::
參考:
[1]M. Patefield 和 D. Tandy,“歐文 T 函數的快速準確計算”,統計軟件卷。 5,第 1-25 頁,2000 年。
例子:
>>> from scipy import special >>> a = 3.5 >>> h = 0.78 >>> special.owens_t(h, a) 0.10877216734852274
相關用法
- Python SciPy special.exp1用法及代碼示例
- Python SciPy special.expn用法及代碼示例
- Python SciPy special.ncfdtri用法及代碼示例
- Python SciPy special.gamma用法及代碼示例
- Python SciPy special.y1用法及代碼示例
- Python SciPy special.y0用法及代碼示例
- Python SciPy special.ellip_harm_2用法及代碼示例
- Python SciPy special.i1e用法及代碼示例
- Python SciPy special.smirnovi用法及代碼示例
- Python SciPy special.ker用法及代碼示例
- Python SciPy special.ynp_zeros用法及代碼示例
- Python SciPy special.k0e用法及代碼示例
- Python SciPy special.j1用法及代碼示例
- Python SciPy special.logsumexp用法及代碼示例
- Python SciPy special.expit用法及代碼示例
- Python SciPy special.polygamma用法及代碼示例
- Python SciPy special.nbdtrik用法及代碼示例
- Python SciPy special.nbdtrin用法及代碼示例
- Python SciPy special.seterr用法及代碼示例
- Python SciPy special.ncfdtr用法及代碼示例
- Python SciPy special.pdtr用法及代碼示例
- Python SciPy special.expm1用法及代碼示例
- Python SciPy special.shichi用法及代碼示例
- Python SciPy special.smirnov用法及代碼示例
- Python SciPy special.stdtr用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.special.owens_t。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。