我想对给定的一组样本进行数值积分。
假设我有x
不均匀的区域,并且y = f(x)
是我想要集成的功能。
x y=f(x)
0.1 10.5
1.2 2.0
3.7 11.0
7.0 4.0
现在我可以以这种方式使用scipy.integrate 中的 Simpon 规则吗?
from scipy.integrate import simps
I = simps(y,x)
即使我的x
价值观间隔不均匀?