The scipy documentation states that integrate.quad uses "a technique from the Fortran library QUADPACK". QUADPACK provides several routines using different techniques. Which one(s) does integrate.quad use ?
            Asked
            
        
        
            Active
            
        
            Viewed 1,851 times
        
    0
            
            
        
        usernumber
        
- 1,958
 - 1
 - 21
 - 58
 
1 Answers
1
            An answer to your question is given in a previous post:
How to know integration technique used by quadpack
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).