Python| Scipy 集成.fixed_quad() 方法
在scipy.integrate.fixed_quad()
方法的帮助下,我们可以使用scipy.integrate.fixed_quad()
方法使用固定阶高斯求积来计算定积分。
Syntax : scipy.integrate.fixed_quad(func, a, b, n)
Return : Return the computed value of a definite integral.
示例 #1:
在这个例子中我们可以看到,通过使用scipy.integrate.fixed_quad()
方法,我们可以使用这种方法使用固定阶高斯求积得到定积分。
# import scipy.integrate
from scipy import integrate
func = lambda x: x**3
# using scipy.integrate.fixed_quad() method
gfg = integrate.fixed_quad(func, 0.0, 1.0, n = 2) # n is the order of integration
print(gfg)
输出 :
0.24999999999999997
示例 #2:
# import scipy.integrate
from scipy import integrate
func = lambda x: x**2 + 4 * x + 4
# using scipy.integrate.fixed_quad() method
gfg = integrate.fixed_quad(func, 1.0, 2.0, n = 2) # n is the order of integration
print(gfg)
输出 :
12.333333333333332