Python| sympy.integrate() 使用限制
借助sympy.integrate(expression, limit)
方法,我们可以使用sympy.integrate(expression, limit)
方法以变量的形式找到使用限制的数学表达式的积分。
Syntax : sympy.integrate(expression, reference variable, limit)
Return : Return integration of mathematical expression.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.integrate(expression, limits)
方法,我们可以找到使用限制的数学表达式与变量的积分。这里我们也使用symbols()
方法将变量声明为符号。
# import sympy
from sympy import *
x, y = symbols('x y')
gfg_exp = cos(x)
print("Before Integration : {}".format(gfg_exp))
# Use sympy.integrate() method
intr = integrate(gfg_exp, (x, -oo, oo))
print("After Integration : {}".format(intr))
输出 :
Before Integration : cos(x)
After Integration : AccumBounds(-2, 2)
示例 #2:
# import sympy
from sympy import *
x, y = symbols('x y')
gfg_exp = tan(x)
print("Before Integration : {}".format(gfg_exp))
# Use sympy.integrate() method
intr = integrate(gfg_exp, (x, -1, 1))
print("After Integration : {}".format(intr))
输出 :
Before Integration : tan(x)
After Integration : 0