PRODUCT_RULE is a MATLAB program which creates a multidimensional quadrature rule by using a product of one-dimensional quadrature rules.
The current version of the program requires that all the "factor rules" be identical, that is, the product rule is created as the product of n identical one-dimensional rules. It is possible to create product rules in which the factors are not equal, and one day this program may be extended to handle that case.
Note that the three files that define the quadrature rule are assumed to have related names, of the form
For information on the form of these files, see the QUADRATURE_RULES directory listed below.
product_rule prefix dim_numwhere
If the arguments are not supplied on the command line, the program will prompt for them.
The program will create these output files, which define the multidimensional quadrature rule:
The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.
CLENSHAW_CURTIS is a MATLAB library which sets up a Clenshaw Curtis quadrature grid in multiple dimensions.
INTEGRAL_TEST is a FORTRAN90 program which uses some of these test integrals to evaluate sets of quadrature points.
NINT_EXACTNESS is a MATLAB program which can test a quadrature rule for polynomial exactness.
NINTLIB is a MATLAB library which numerically estimates integrals in multiple dimensions.
PATTERSON_RULE, is a MATLAB program which computes a Gauss-Patterson quadrature rule.
PRODUCT_RULE is available in a C++ version and a FORTRAN90 version and a MATLAB version.
QUADRATURE_RULES is a dataset directory which contains sets of files that define quadrature rules over various 1D intervals or multidimensional hypercubes.
QUADRATURE_TEST a MATLAB program which reads the definition of a multidimensional quadrature rule from three files, applies the rule to a number of test integrals, and prints the results.
QUADRULE is a MATLAB library which defines quadrature rules on a variety of intervals with different weight functions.
STROUD is a MATLAB library which contains quadrature rules for a variety of unusual areas, surfaces and volumes in 2D, 3D and N-dimensions.
TEST_NINT is a MATLAB library which defines integrand functions for testing multidimensional quadrature routines.
As an example, we start with a 1D Clenshaw Curtis rule of order 3:
We give the command
product_rule ( 'cc_d1_o003', 2 )to create a Clenshaw Curtis product rule of order 9 for a 2D region. The files which are created include:
You can go up one level to the MATLAB source codes.