本文簡要介紹 python 語言中 scipy.special.beta
的用法。
用法:
scipy.special.beta(a, b, out=None) = <ufunc 'beta'>#
貝塔函數。
該函數在 [1] 中定義為
其中 是伽馬函數。
- a, b: array_like
實值參數
- out: ndarray,可選
函數結果的可選輸出數組
- 標量或 ndarray
貝塔函數的值
參數 ::
返回 ::
參考:
[1]NIST 數學函數數字 Library ,方程式。 5.12.1。 https://dlmf.nist.gov/5.12
例子:
>>> import scipy.special as sc
根據上麵給出的定義,beta 函數與 gamma 函數相關:
>>> sc.beta(2, 3) 0.08333333333333333 >>> sc.gamma(2)*sc.gamma(3)/sc.gamma(2 + 3) 0.08333333333333333
正如這種關係所示,β 函數是對稱的:
>>> sc.beta(1.7, 2.4) 0.16567527689031739 >>> sc.beta(2.4, 1.7) 0.16567527689031739
此函數滿足 :
>>> sc.beta(1, 4) 0.25
相關用法
- Python SciPy special.betaincinv用法及代碼示例
- Python SciPy special.betainc用法及代碼示例
- Python SciPy special.betainccinv用法及代碼示例
- Python SciPy special.betaincc用法及代碼示例
- Python SciPy special.betaln用法及代碼示例
- Python SciPy special.besselpoly用法及代碼示例
- Python SciPy special.ber用法及代碼示例
- Python SciPy special.bei用法及代碼示例
- Python SciPy special.bernoulli用法及代碼示例
- Python SciPy special.bi_zeros用法及代碼示例
- Python SciPy special.bdtri用法及代碼示例
- Python SciPy special.boxcox1p用法及代碼示例
- Python SciPy special.binom用法及代碼示例
- Python SciPy special.boxcox用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.special.beta。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。