CC_DISPLAY is a MATLAB program which displays the abscissas used in a 2D quadrature rule.
The current version only considers a single Clenshaw Curtis grid, in which the orders of the rule in the X and Y directions may differ.
Eventually, some other variations will be added, in which the points associated with an isotropic Smolyak rule will be displayed, or in which several sets of Clenshaw Curtis grids will be superimposed, or a Gauss-Legendre rule will be displayed.
BOX_PLOT is a MATLAB program which can color in specified entries of a checkerboard, corresponding to pairs of integer data.
CLENSHAW_CURTIS is a MATLAB library of routines for defining a Clenshaw Curtis quadrature rule.
FEKETE is a MATLAB library of routines for defining a Fekete rule for quadrature or interpolation over a triangle.
GL_DISPLAY is a MATLAB library of routines for displaying a single Gauss Legendre product rule quadrature grid in 2D.
INTLIB is a FORTRAN90 library containing a variety of routines for numerical estimation of integrals in 1D.
NINTLIB is a MATLAB library containing a variety of routines for numerical estimation of integrals in multiple dimensions.
QUADPACK is a FORTRAN90 library containing a variety of routines for numerical estimation of integrals in 1D.
QUADRULE is a MATLAB library containing quadrature rules.
SPARSE_GRID_DISPLAY is a library of MATLAB routines which can display a sparse grid in 2D or 3D.
STROUD is a MATLAB library containing quadrature rules for a variety of unusual areas, surfaces and volumes in 2D, 3D and N-dimensions.
TEST_INT is a FORTRAN90 library containing a number of functions that may be used as test integrands for quadrature rules in 1D.
TEST_NINT is a MATLAB library containing a number of functions that may be used as test integrands for quadrature rules in multiple dimensions.
TOMS351 is a FORTRAN77 library which estimates an integral using Romberg integration.
A GZIP'ed TAR file of the contents of this directory is available. This is only done as a convenience for users who want ALL the files, and don't want to download them individually. This is not a convenience for me, so don't be surprised if the tar file is somewhat out of date.
CC_GRID displays a single Clenshaw Curtis grid of orders M by N:
CC_GRIDS_MINMAX displays all Clenshaw Curtis grids of orders M by N such that M+N is between Q_MIN and Q_MAX:
CC_LEVELS_MINMAX displays all Clenshaw Curtis grids of levels M by N such that M+N is between LEVEL_MIN and LEVEL_MAX. Note that the order, or number of points, in the one dimensional rules, is related to the one dimensional levels by ORDER=2**LEVEL+1 (except that the LEVEL=0 corresponds to ORDER=1):
CC_GRIDS_CONSTRAINED displays all Clenshaw Curtis grids of orders M by N such that M and N lie between ORDER_MIN and ORDER_MAX, and ALPHA1*M+ALPHA2*N<=Q_MAX:
CC_LEVELS_CONSTRAINED displays all Clenshaw Curtis grids of levels M by N such that M and N lie between LEVELS_MIN and LEVELS_MAX, and ALPHA1*M+ALPHA2*N<=Q_MAX:
You can go up one level to the MATLAB source codes.