quadmom
quadmom,
an Octave code which
computes a Gaussian quadrature rule for a weight function rho(x)
based on the Golub-Welsch procedure that only requires knowledge
of the moments of rho(x).
The standard Golub-Welsch procedure expects to work with the
coefficients alpha() and beta() of the three term recursion
for the orthogonal polynomials associated with the weight function rho(x).
However, in the same paper, Golub and Welsch discuss a related procedure
which, to compute a Gaussian quadrature rule of order N, requires the
values of the first M=2*N+1 moments associated with rho(x):
mu(k) = integral x^k rho(x) dx, 0 <= k <= 2*n
This library demonstrates this moment-based procedure.
Executing the sample program requires access to the TOMS655 library
as well.
Licensing:
The computer code and data files made available on this web page
are distributed under
the MIT license
Languages:
quadmom is available in
a C version and
a C++ version and
a Fortran90 version and
a MATLAB version and
a Octave version.
Related Data and Programs:
quadmom_test
quadrature_golub_welsch,
an Octave code which
computes the points and weights of a Gaussian quadrature rule using the
Golub-Welsch procedure, assuming that the points have been specified.
quadrature_least_squares,
an Octave code which
computes weights for "sub-interpolatory" quadrature rules,
that is, it estimates integrals by integrating a polynomial that
approximates the function data in a least squares sense.
quad_rule,
an Octave code which
contains information about quadrature rules, both as tabulated values,
and as computational procedures.
toms655,
an Octave code which
computes the weights for interpolatory quadrature rules;
this library is commonly called IQPACK,
by Sylvan Elhay and Jaroslav Kautsky.
Reference:
-
Sylvan Elhay, Jaroslav Kautsky,
Algorithm 655:
IQPACK,
FORTRAN Subroutines for the Weights of Interpolatory Quadrature,
ACM Transactions on Mathematical Software,
Volume 13, Number 4, December 1987, pages 399-415.
-
Gene Golub, John Welsch,
Calculation of Gaussian Quadrature Rules,
Mathematics of Computation,
Volume 23, Number 106, April 1969, pages 221-230.
-
Jaroslav Kautsky, Sylvan Elhay,
Calculation of the Weights of Interpolatory Quadratures,
Numerische Mathematik,
Volume 40, Number 3, October 1982, pages 407-422.
Source Code:
-
moment_method.m
computes a quadrature rule by the method of moments.
-
moments_laguerre.m
first M moments of the Laguerre weight over [0,+oo);
-
moments_legendre.m
first M moments of the Legendre weight over [a,b];
-
moments_normal.m
first M moments of a general Gaussian weight with mean mu
and standard deviation sigma, over (-oo,+oo);
-
moments_normal_01.m
first M moments of the standard Gaussian weight over (-oo,+oo);
-
moments_truncated_normal_ab.m
first M moments of a general Gaussian weight with mean mu
and standard deviation sigma, truncated to [a,b];
-
moments_truncated_normal_a.m
first M moments of a general Gaussian weight with mean mu
and standard deviation sigma, truncated to [a,+oo);
-
moments_truncated_normal_b.m
first M moments of a general Gaussian weight with mean mu
and standard deviation sigma, truncated to (-oo,b];
-
normal_01_cdf.m
evaluates the Normal 01 CDF.
-
normal_01_pdf.m
evaluates the Normal 01 PDF.
-
r8_factorial2.m
computes the double factorial function.
-
r8_mop.m
returns the value of (-1)*K.
-
r8mat_print.m
prints an R8MAT.
-
r8mat_print_some.m
prints some of an R8MAT.
-
r8vec_print.m
prints an R8VEC.
-
r8vec2_print.m
prints a pair of R8VEC's.
-
truncated_normal_ab_moment.m
returns moments of the Truncated Normal PDF.
-
truncated_normal_a_moment.m
returns moments of the lower Truncated Normal PDF.
-
truncated_normal_b_moment.m
returns moments of the upper Truncated Normal PDF.
Last revised on 12 January 2021.