Python 积分计算 - 使用 SciPy 库
Python 中可以使用 SciPy 库中的 quad 函数来求解积分。以下是一个示例代码:
from scipy.integrate import quad
def integrand(x):
return x ** 2
result, error = quad(integrand, 0, 1)
print('The result of integration is: ', result)
print('The estimated error is: ', error)
这个例子是求解从 0 到 1 的 x^2 函数的积分。quad 函数返回的第一个值是积分结果,第二个值是估计的误差。
原文地址: https://www.cveoy.top/t/topic/mOgB 著作权归作者所有。请勿转载和采集!