SG++-Doxygen-Documentation
|
The following example shows how to integrate in SG++, using both direct integration of a sparse grid function and the use of Monte Carlo integration.
As in the tutorial.py (Start Here) example, we deal with the function
\[ f\colon [0, 1]^2 \to \mathbb{R},\quad f(x_0, x_1) := 16 (x_0 - 1) x_0 (x_1 - 1) x_1 \]
which we first interpolate. We then integrate the interpolant, then the function itself using 100000 Monte Carlo points, and we then compute the L2-error.
The function, which sgpp::base::OperationQuadratureMC takes, has one parameter, a sequence (C++ provides a tuple) with the coordinates of the grid point \(\in [0,1]^d\).
Create a two-dimensional piecewise bi-linear grid of level 3
Calculate the surplus vector alpha for the interpolant of \( f(x)\). Since the function can be evaluated at any point. Hence. we simply evaluate it at the coordinates of the grid points to obtain the nodal values. Then we use hierarchization to obtain the surplus value.
Now we compute and compare the quadrature using four different methods available in SG++.
This results in an output similar to:
dimensionality: 2 number of grid points: 17 exact integral value: 0.421875 Monte Carlo value: 0.421298 Monte Carlo value: 0.421971 MC value: 0.444917 MC L2-error: 0.0242639