Python sympy.harmonic()方法
在sympy.harmonic()方法的帮助下,我们可以在SymPy中找到谐波数。
harmonic(n)
语法: harmonic(n)
参数 :
n –它表示要计算的谐波数的数目。
返回:返回第n次谐波数。
示例 #1:
# import sympy
from sympy import *
n = 7
print("Value of n = {}".format(n))
# Use sympy.harmonic() method
nth_harmonic = harmonic(n)
print("Value of nth harmonic number : {}".format(nth_harmonic))
输出:
Value of n = 7
Value of nth harmonic number : 363/140
harmonic(n, m)
语法: harmonic(n, m)
参数 :
n – 它表示要计算的谐波数的数量。
m – 它表示谐波数的顺序。
返回: 返回m阶的第n次谐波数。
示例 #2:
# import sympy
from sympy import *
n = 5
m = 2
print("Value of n = {} and m = {}".format(n, m))
# Use sympy.harmonic() method
nth_harmonic_poly = harmonic(n, m)
print("The nth harmonic number of order m : {}".format(nth_harmonic_poly))
输出:
Value of n = 5 and m = 2
The nth harmonic number of order m : 5269/3600