SobolSequenzen
Sobol sequences are a type of low-discrepancy sequence, also known as quasi-random sequences. They are designed to fill a multidimensional space more uniformly than purely random sampling. This uniformity is achieved by carefully constructing the coordinates of the sample points, aiming to minimize gaps and clusters. The core idea behind Sobol sequences is to use a specific set of direction numbers and a base number to generate successive points.
These sequences are particularly useful in numerical integration and Monte Carlo methods, especially in high dimensions.
The generation process involves a bitwise operation. For each dimension, a new point's coordinate is calculated
---