Google News
logo
SciPy - Interview Questions
What is Integration functions in SciPy?
Scipy is the scientific computing module of Python providing in-built functions on a lot of well-known Mathematical functions. The scipy.integrate sub-package provides several integration techniques including an ordinary differential equation integrator. 
 
Numerical Integration is the approximate computation of an integral using numerical techniques. Methods for Integrating function given function object :
 
* quad : General Purpose Integration
* dblquad : General Purpose Double Integration
* nquad : General Purpose n- fold Integration
* fixed_quad : Gaussian quadrature, order n
* quadrature : Gaussian quadrature to tolerance
* romberg : Romberg integration
* trapz : Trapezoidal rule
* cumtrapz : Trapezoidal rule to cumulatively compute integral
* simps : Simpson’s rule
* romb : Romberg integration
* polyint : Analytical polynomial integration (NumPy)
Advertisement