How to use `scipy.integrate.quad` to compute integral of a function which depends on the integral of another function

我与影子孤独终老i 提交于 2019-12-11 16:09:42

问题


Any help to compute this integration, F function is defined using the f function which involves the first integration, finally, integrate F.

from scipy.integrate import quad

f = lambda x,a : a**2*x

def F(s,a):
  return quad(f,0,s,args=(a,))
quad(F,0,5,args=(4,))

Got the error:

      2 def F(s,a):
      3   return quad(f,0,s,args=(a,))
----> 4 quad(F,0,5,args=(4,))
      5 
    446     if points is None:
    447         if infbounds == 0:
--> 448             return _quadpack._qagse(func,a,b,args,full_output,epsabs,epsrel,limit)
    449         else:
    450             return _quadpack._qagie(func,bound,infbounds,args,full_output,epsabs,epsrel,limit)

TypeError: must be real number, not tuple

回答1:


Have a look at the return values of scipy.integrate.quad:

Returns:

y: float The integral of func from a to b.

abserr: float An estimate of the absolute error in the result.

...

So there are multiple return values (a tuple) and that's why you're getting the TypeError: must be real number, not tuple message.

I guess, you're just interested in the integral value quad(...)[0] so that's what your F should return:

from scipy.integrate import quad

f = lambda x, a: a**2 * x
F = lambda x, a: quad(f, 0, x, args=(a,))[0]

I = quad(F, 0, 5, args=(4,))
print(I)

Which prints:

(333.33333333333337, 3.700743415417189e-12)



回答2:


Another way of looking at the problem is to realize that you're integrating the function a**2 * y over the triangle spanned by the points [0, 0], [5, 0], and [5, 5]. You could then use triangle quadrature from quadpy (one of my projects) to compute the value:

import quadpy

a = 4.0


def g(x):
    return a ** 2 * x[1]


scheme = quadpy.triangle.dunavant_05()
val = scheme.integrate(g, [[0.0, 0.0], [5.0, 0.0], [5.0, 5.0]])
print(val)

This should require a much fewer function evaluations that the nested quad approach.



来源:https://stackoverflow.com/questions/57206546/how-to-use-scipy-integrate-quad-to-compute-integral-of-a-function-which-depend

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!