sparse_grid_gl, a MATLAB code which constructs sparse grids based on 1D Gauss-Legendre rules.
Sparse grids are more naturally constructed from a nested family of quadrature rules. Gauss-Legendre rules are not nested, but have higher accuracy. Thus, there is a tradeoff. If we compare two sparse grids of the same "level", one using Gauss-Legendre rules and the other, say, Clenshaw-Curtis rules, then the Gauss-Legendre sparse grid will have higher accuracy...but also a significantly greater number of points. When measuring efficiency, we really need to balance the cost in quadrature points against the accuracy, and so it is not immediately obvious which choice is best!
To slightly complicate matters, Gauss-Legendre rules are very weakly nested, in that the rules of odd order all include the abscissa value X=0.0. A sparse grid constructed from Gauss-Legendre rules will thus have to keep track of this minor point as well.
Here is a table showing the number of points in a sparse grid based on Gauss-Legendre rules, indexed by the spatial dimension, and by the "level", which is simply an index for the family of sparse grids.
DIM: | 1 | 2 | 3 | 4 | 5 | 6 |
---|---|---|---|---|---|---|
LEVEL_MAX | ||||||
0 | 1 | 1 | 1 | 1 | 1 | 1 |
1 | 3 | 5 | 7 | 9 | 11 | 13 |
2 | 9 | 21 | 37 | 57 | 81 | 109 |
3 | 23 | 73 | 159 | 289 | 471 | 713 |
4 | 53 | 225 | 597 | 1265 | 2341 | 3953 |
5 | 115 | 637 | 2031 | 4969 | 10363 | 19397 |
6 | 241 | 1693 | 6405 | 17945 | 41913 | 86517 |
The computer code and data files made available on this web page are distributed under the MIT license
sparse_grid_gl is available in a C++ version and a FORTRAN90 version and a MATLAB version.
sparse_grid_cc, a MATLAB lilbrary which computes sparse grids based on a clenshaw-curtis rule.
sparse_grid_composite, a MATLAB code which creates sparse grids based on 1d composite rules (currently only of order 1).
sparse_grid_f2, a dataset directory of sparse grids based on a fejer type 2 rule.
sparse_grid_gl, a dataset directory which contains sparse grids based on a gauss-legendre rule.
sparse_grid_hermite, a MATLAB code which creates sparse grids based on gauss-hermite rules.
sparse_grid_hw, a MATLAB code which creates sparse grids based on Gauss-Legendre, Gauss-Hermite, Gauss-Patterson, or a nested variation of Gauss-Hermite rules, by Florian Heiss and Viktor Winschel.
spquad, a MATLAB code which computes the points and weights of a sparse grid quadrature rule for a multidimensional integral, based on the Clenshaw-Curtis quadrature rule, by Greg von Winckel.
toms847, a MATLAB code which uses sparse grids to carry out multilinear hierarchical interpolation. it is commonly known as spinterp, and is by andreas klimke.