本文簡要介紹 python 語言中 scipy.special.bernoulli
的用法。
用法:
scipy.special.bernoulli(n)#
伯努利數 B0..Bn(含)。
- n: int
表示要生成的伯努利級數中的項數。
- ndarray
伯努利數
[B(0), B(1), ..., B(n)]
。
參數 ::
返回 ::
參考:
[1]張善傑和金建明。 “特殊函數的計算”,John Wiley and Sons,1996 年。https://people.sc.fsu.edu/~jburkardt/f77_src/special_functions/special_functions.html
[2]“Bernoulli number”,維基百科,https://en.wikipedia.org/wiki/Bernoulli_number
例子:
>>> import numpy as np >>> from scipy.special import bernoulli, zeta >>> bernoulli(4) array([ 1. , -0.5 , 0.16666667, 0. , -0.03333333])
Wikipedia 文章 ([2]) 指出了伯努利數和 zeta 函數之間的關係,
B_n^+ = -n * zeta(1 - n)
forn > 0
:>>> n = np.arange(1, 5) >>> -n * zeta(1 - n) array([ 0.5 , 0.16666667, -0. , -0.03333333])
請注意,在維基百科文章中使用的符號中,
bernoulli
計算B_n^-
(即,它使用B_1
為 -1/2 的約定)。上麵給出的關係適用於B_n^+
,因此 0.5 的符號與bernoulli(4)
的輸出不匹配。
相關用法
- Python SciPy special.ber用法及代碼示例
- Python SciPy special.betaincinv用法及代碼示例
- Python SciPy special.besselpoly用法及代碼示例
- Python SciPy special.betainc用法及代碼示例
- Python SciPy special.betainccinv用法及代碼示例
- Python SciPy special.bei用法及代碼示例
- Python SciPy special.beta用法及代碼示例
- Python SciPy special.betaincc用法及代碼示例
- Python SciPy special.betaln用法及代碼示例
- 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.bernoulli。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。