Multiple integrals is what will interest you as we dive deep into it, through this recipe.
Computing multiple integrals
Getting ready
We will need to follow some instructions and install the prerequisites.
How to do it...
- It is possible to perform multivariate numerical integration on different domains via the application of adaptive Gaussian quadrature rules
- In the scipy.integrate module, we have to this effect the routines dblquad (double integrals), tplquad (triple integrals), and nquad (integration over multiple variables)
These routines can only compute definite...