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


Python Scipy integrate.fixed_quad()用法及代码示例


借助scipy.integrate.fixed_quad()方法,我们可以通过使用固定阶高斯正交求定积分的计算scipy.integrate.fixed_quad()方法。

用法: scipy.integrate.fixed_quad(func, a, b, n)
返回: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



相关用法


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