Software:QUADPACK

From HandWiki
Short description: Software library
QUADPACK
Original author(s)Robert Piessens
Elise deDoncker-Kapenga
Christoph W. Überhuber
David Kahaner
Initial releaseMay 1981 (1981-05)
Final release
May 1987[1]
Written inFORTRAN 77
TypeLibrary
LicensePublic domain
Websitenines.cs.kuleuven.be/software/QUADPACK/

QUADPACK is a FORTRAN 77 library for numerical integration of one-dimensional functions.[2] It was included in the SLATEC Common Mathematical Library and is therefore in the public domain.[3] The individual subprograms are also available on netlib.[4]

The GNU Scientific Library reimplemented the QUADPACK routines in C. SciPy provides a Python interface to part of QUADPACK.[5][6]

Routines

The main focus of QUADPACK is on automatic integration routines in which the user inputs the problem and an absolute or relative error tolerance and the routine attempts to perform the integration with an error no larger than that requested. There are nine such automatic routines in QUADPACK, in addition to a number of non-automatic routines. All but one of the automatic routines use adaptive quadrature.[7]

Summary of naming scheme for automatic routines[8]
1st letter 2nd letter 3rd letter 4th letter
Q Quadrature
N Non-adaptive
A Adaptive
G General integrand
W Weight function of specified form
Simple integrator
S Singularities handled
P Specified points of local difficulty (singularities, discontinuities …)
I Infinite interval
O Oscillatory weight function (cos or sin) over a finite interval
F Fourier transform (cos or sin)
C Cauchy principal value

Each of the adaptive routines also have versions suffixed by E that have an extended parameter list that provides more information and allows more control. Double precision versions of all routines were released with prefix D.

General-purpose routines

The two general-purpose routines most suitable for use without further analysis of the integrand are QAGS for integration over a finite interval and QAGI for integration over an infinite interval.[7] These two routines are used in GNU Octave (the quad command)[5] and R (the integrate function).[9]

QAGS
uses global adaptive quadrature based on 21-point Gauss–Kronrod quadrature within each subinterval, with acceleration by Peter Wynn's epsilon algorithm.[7][10]
QAGI
is the only general-purpose routine for infinite intervals, and maps the infinite interval onto the semi-open interval (0,1] using a transformation then uses the same approach as QAGS, except with 15-point rather than 21-point Gauss–Kronrod quadrature.[2] For an integral over the whole real line, the transformation used is [math]\displaystyle{ x = (1-t)/t }[/math]:[2] [math]\displaystyle{ \int_{-\infty}^{+\infty} f(x) dx = \int_0^1 {dt\over t^2} \left(f\left(\frac{1-t}{t}\right) + f\left(-\frac{1-t}{t}\right)\right) \;. }[/math] This is not the best approach for all integrands: another transformation may be appropriate, or one might prefer to break up the original interval and use QAGI only on the infinite part.[7]

Brief overview of the other automatic routines

QNG
simple non-adaptive integrator
QAG
simple adaptive integrator
QAGP
similar to QAGS but allows user to specify locations of internal singularities, discontinuities etc.
QAWO
integral of cos(ωx) f(x) or sin(ωx) f(x) over a finite interval
QAWF
Fourier transform
QAWS
integral of w(x) f(x) from a to b, where f is smooth and w(x) = (xa)α (bx)β logk(xa) logl(bx), with k, l = 0 or 1 and α, β > –1
QAWC
Cauchy principal value of the integral of f(x)/(xc) for user-specified c and f [2]

See also

References

  1. "quadpack/changes". Netlib. http://www.netlib.org/quadpack/changes. 
  2. 2.0 2.1 2.2 2.3 Piessens, Robert; de Doncker-Kapenga, Elise; Überhuber, Christoph W.; Kahaner, David (1983). QUADPACK: A subroutine package for automatic integration. Springer-Verlag. ISBN 978-3-540-12553-2. 
  3. Fong, Kirby W.; Jefferson, Thomas H. (July 1993). "Guide to the SLATEC Common Mathematical Library". netlib.org. http://www.netlib.org/slatec/guide. 
  4. "quadpack". Netlib. http://www.netlib.org/quadpack. 
  5. 5.0 5.1 "QUADPACK". Numerical Integration, Nonlinear Equations & Software (NINES) Group, Katholieke Universiteit Leuven. http://nines.cs.kuleuven.be/software/QUADPACK. 
  6. "scipy.integrate.quad -- SciPy v0.14.0 Reference Guide". http://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.quad.html. 
  7. 7.0 7.1 7.2 7.3 Piessens, Robert; De Doncker, Elise (1984-04-17). "Subroutine QPDOC". QUADPACK. netlib. http://www.netlib.org/quadpack/doc. 
  8. Zwillinger, Daniel (1992). Handbook of integration. A K Peters. p. 255. ISBN 978-0-86720-293-9. https://books.google.com/books?id=DQd4wfV7fo0C&pg=PA255. 
  9. R Development Core Team and contributors worldwide (October 2010). "integrate {stats}: Integration of One-Dimensional Functions". Documentation for package ‘stats’ version 2.13.0. http://stat.ethz.ch/R-manual/R-devel/library/stats/html/integrate.html. 
  10. "17.4 QAGS adaptive integration with singularities". GNU Scientific Library -- Reference. Free Software Foundation. https://www.gnu.org/software/gsl/manual/html_node/QAGS-adaptive-integration-with-singularities.html. 

Further reading

  • Favati, P.; Lotti, G.; Romani, F. (1991). "Algorithm 691; Improving QUADPACK automatic integration routines". ACM Transactions on Mathematical Software 17 (2): 218–232. doi:10.1145/108556.108580. 
  • Cools, R.; Haegemans, A. (2003). "Algorithm 824: CUBPACK: a package for automatic cubature; framework description". ACM Transactions on Mathematical Software 29 (3): 287–296. doi:10.1145/838250.838253.