python中Euler函数怎么用 python euler

主机教程 建站分享 2年前 (2022-12-14) 187次浏览

文章摘要:python中Euler函数怎么用 python euler

在python中使用Euler函数的方法 Euler:Euler()函数的作用是用于返回欧拉多项式的表达式或值 […]

在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


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python中Euler函数怎么用 python euler
文章链接:http://www.7966.org/post/15245.html
转载请注明出处

喜欢 (0)