借助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
相关用法
- Python Scipy stats.hypsecant.mean()用法及代码示例
- Python Scipy integrate.romb()用法及代码示例
- Python Scipy stats.hypsecant.ppf()用法及代码示例
- Python Scipy stats.hypsecant.sf()用法及代码示例
- Python Scipy stats.halfgennorm.ppf()用法及代码示例
- Python Scipy stats.hypsecant.var()用法及代码示例
- Python Scipy stats.halfgennorm.fit()用法及代码示例
- Python Scipy stats.hypsecant.cdf()用法及代码示例
- Python Scipy stats.invgamma.rvs()用法及代码示例
- Python Scipy stats.halfgennorm.pdf()用法及代码示例
- Python Scipy stats.hypsecant.rvs()用法及代码示例
- Python Scipy stats.hypsecant.pdf()用法及代码示例
- Python Scipy stats.halfgennorm.mean()用法及代码示例
- Python Scipy stats.hypsecant.fit()用法及代码示例
- Python Scipy stats.hypsecant.isf()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | Scipy integrate.fixed_quad() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。