From 8bd696bac96d3d194fc548faa7b7b291d33f17f8 Mon Sep 17 00:00:00 2001 From: Andrew Cumming Date: Wed, 20 Sep 2023 11:21:50 -0400 Subject: [PATCH] Adds further reading to integration.md --- integration.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/integration.md b/integration.md index 6b0fad7..20506b4 100644 --- a/integration.md +++ b/integration.md @@ -165,6 +165,11 @@ For Simpson's rule you can use your own implementation from above or you could t For Gaussian quadrature, try both Gauss-Hermite and Gauss-Laguerre. Which one is best? ``` +## Further reading + +- Overview of [`scipy.intgerate'](https://docs.scipy.org/doc/scipy/tutorial/integrate.html) + +- [QUADPACK](https://en.wikipedia.org/wiki/QUADPACK) is the Fortran 77 library that is used by `scipy.integrate.quad` under the hood.