借助於sympy.euler()方法,我們可以在SymPy中找到Euler數和Euler多項式。
歐拉(n)-
用法: euler(n)
參數:
n -它表示第n個Euler數。
返回:返回nth歐拉數。
範例1:
# import sympy
from sympy import * n = 4
print("Value of n = {}".format(n))
# Use sympy.euler() method
nth_euler = euler(n)
print("Value of nth euler number : {}".format(nth_euler))
輸出:
Value of n = 4 Value of nth euler number : 5
歐拉(n,k)-
用法: euler(n, k)
參數:
n -它表示歐拉多項式的階數。
k -它表示歐拉多項式中的變量。
返回:返回歐拉多項式的表達式或其值。
範例2:
# import sympy
from sympy import * n = 5
k = symbols('x')
print("Value of n = {} and k = {}".format(n, k))
# Use sympy.euler() method
nth_euler_poly = euler(n, k)
print("The nth euler polynomial : {}".format(nth_euler_poly))
輸出:
Value of n = 5 and k = x The nth euler polynomial : x**5 - 5*x**4/2 + 5*x**2/2 - 1/2
範例3:
# import sympy
from sympy import * n = 4
k = 3
print("Value of n = {} and k = {}".format(n, k))
# Use sympy.euler() method
nth_euler_poly = euler(n, k)
print("The nth euler polynomial value : {}".format(nth_euler_poly))
輸出:
Value of n = 4 and k = 3 The nth euler polynomial value : 30
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python os.readlink()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python | sympy.euler() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。