Salome HOME
Minor documentation review corrections for bounds
[modules/adao.git] / doc / en / snippets / SampleAsMinMaxSobolSequence.rst
1 .. index:: single: SampleAsMinMaxSobolSequence
2 .. index:: single: Sobol Sequence
3
4 SampleAsMinMaxSobolSequence
5   *List of triplets of pair values*. This key describes the bounded domain in
6   which the calculations points will be placed, from a *[min,max]* pair for
7   each state component. The lower bounds are included. This list of pairs,
8   identical in number to the size of the state space, is augmented by a pair of
9   integers *[dim,nbr]* containing the dimension of the state space and the
10   minimum desired number of sample points (by construction, the number of
11   points generated in the Sobol sequence will be the power of 2 immediately
12   above this minimum number). Sampling is then automatically constructed using
13   the Sobol sequence method. By nature, the points are included in the domain
14   defined by the explicit bounds.
15
16   Example :
17   ``{"SampleAsMinMaxSobolSequence":[[0.,1.],[-1,3]]+[[2,11]]}`` for a state space of dimension 2 and 11 sampling points (there will be 16 points in practice).