在python中使用Euler函數的方法
Euler:Euler()函數的作用是用于返回歐拉多項式的表達式或值。
Euler()函數語法:
euler(n, k)
參數:
n :表示歐拉多項式的階數。
k :表示歐拉多項式中的變量。
Euler()函數使用方法:
from sympy import * n = 5
k = symbols('x')
print("Value of n = {} and k = {}".format(n, k))
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