当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python sympy.euler()用法及代码示例


借助于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


相关用法


注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.euler() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。