整合两个变量的函数

时间:2015-04-01 11:46:26

标签: python scipy integration quad

我有一个函数func(rp,pi) 我现在有值。我还的值为rp and pi

我现在需要在0 to pi

的范围内集成此功能

enter image description here

如何使用quad from scipy解决此问题?我怀疑的是,四边形如何知道我的积分限制适用于pi而不是rp

我试过了:

from scipy.integrate import quad

integral = []

for a in func:
    result,error = quad(lambda func:a,0,pi)
    integral.append(result)

integral = np.array(integral)

此处func是具有该函数值的列表。这确实给了我价值,但我不确定这是否正确?

Here is download link to the file with rp,pi,func。第一列为rp,第二列为pi,第三列为func

0 个答案:

没有答案