Python 5种经典的求积分方法
·
不同的方法最大区别在于公式的不同/矩形区域的不同,依据公式而定。本文代码为不严格代码,最严格的代码为先判断连续性。当你需要对大量函数积分(懒得写函数连续性检测的时候)可以使用本文代码用try…except…不严格替代。
代码使用方式:修改func(x)中的函数,然后可以看代码中的示例代码进行修改。只需要输入函数,开始值,结束值,迭代次数/精度,方法函数名即可使用。
1. Simpson积分法:
2. 右矩形积分公式
3. 左矩形积分公式
4. 中矩形积分公式
5. 梯形积分公式
from math import *
def sgn(x):
if x > 0:
return 1
elif x == 0:
return 0
else:
return -1
def func(x):
# return sgn(sin(pi / sin(x)))
return x ** 2 + 2
def simpson(begin, between, i):
a = begin + (i - 1) * between
b = begin + i * between
return between * (func(a) + func(b) + 4 * func((a + b) / 2)) / 6
def rightRectangle(begin, between, i):
return between * func(begin + between * i)
def leftRectangle(begin, between, i):
return between * func(begin + between * (i - 1))
def midRectangle(begin, between, i):
return between * func(begin + between / 2 * (2 * i - 1))
def trapezoidRectangle(begin, between, i):
return between / 2 * (func(begin + between * (i - 1)) + func(begin + between * i))
def cal_IntegralByEpsilon(begin, end, epsilon, method):
n = 1
result = 0
preResult = float("inf")
while abs(preResult - result) >= epsilon:
preResult = result
result = 0
n *= 2
between = (end - begin) / n
for i in range(n):
try:
result += method(begin, between, i + 1)
except:
return "Integrated function has discontinuity or does not defined in current interval"
return result
def cal_IntegralByN(begin, end, n, method):
result = 0
between = (end - begin) / n
for i in range(n):
try:
result += method(begin, between, i + 1)
except:
return "Integrated function has discontinuity or does not defined in current interval"
if __name__ == "__main__":
begin = 0.2
end = 0.5
epsilon = 0.0001
print(cal_IntegralByEpsilon(begin, end, epsilon, simpson))
print(cal_IntegralByEpsilon(begin, end, epsilon, rightRectangle))
print(cal_IntegralByEpsilon(begin, end, epsilon, leftRectangle))
print(cal_IntegralByEpsilon(begin, end, epsilon, midRectangle))
print(cal_IntegralByEpsilon(begin, end, epsilon, trapezoidRectangle))
begin = 0.2
end = 0.5
n = 10
print(cal_IntegralByN(begin, end, n, simpson))
print(cal_IntegralByN(begin, end, n, rightRectangle))
print(cal_IntegralByN(begin, end, n, leftRectangle))
print(cal_IntegralByN(begin, end, n, midRectangle))
print(cal_IntegralByN(begin, end, n, trapezoidRectangle))
推荐内容
阅读全文
AI总结
更多推荐
相关推荐
查看更多
DeepSeek-V3-0324

DeepSeek最新推出DeepSeek-V3-0324版本,参数量从6710亿增加到6850亿,在数学推理、代码生成能力以及长上下文理解能力方面直线飙升。
javascript

JavaScript 编程指南。
Python

All Algorithms implemented in Python
热门开源项目
活动日历
查看更多
直播时间 2025-03-13 18:32:35

全栈自研企业级AI平台:Java核心技术×私有化部署实战
直播时间 2025-03-11 18:35:18

从0到1:Go IoT 开发平台的架构演进与生态蓝图
直播时间 2025-03-05 14:35:37

国产工作流引擎 终结「996」开发困局!
直播时间 2025-02-25 14:38:13

免费开源宝藏 ShopXO,电商系统搭建秘籍大公开!
直播时间 2025-02-18 14:31:04

从数据孤岛到数据智能 - 企业级数据管理利器深度解析
所有评论(0)