I used scipy.integrate.quad to calculate an integral from 0 to infinite.
It gave a very good result, but now I would like to know which integration method it uses.
The documentation says the fortran library QUADPACK is used: but the question about the method remains). Is there any way for printing the technique? Does the software apply some decision tree?
As scipy is open source, you can actually read the code for integrate.quad, which says:
For finite integration limits, the integration is performed using a Clenshaw-Curtis method which uses Chebyshev moments. ... If one of the integration limits is infinite, then a Fourier integral is computed (assuming w neq 0).
The call in _quad for an infinite bound is to _quadpack._qagie.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With