1%feature("docstring") OT::HaltonSequence
2"Halton sequence.
3
4Parameters
5----------
6dimension : positive int, default = 1
7    Dimension of the points.
8scrambling : str
9    Identifier of the scrambling method. Available methods: reverse scrambling
10    (scrambling='REVERSE'), random scrambling (scrambling='RANDOM') or no
11    scrambling ('NONE', default value). Default value is given by the
12    'HaltonSequence-Scrambling' key in the :class:`~openturns.ResourceMap`.
13
14Examples
15--------
16>>> import openturns as ot
17>>> sequence = ot.HaltonSequence(2)
18>>> print(sequence.generate(5))
190 : [ 0.5      0.333333 ]
201 : [ 0.25     0.666667 ]
212 : [ 0.75     0.111111 ]
223 : [ 0.125    0.444444 ]
234 : [ 0.625    0.777778 ]"
24
25// ---------------------------------------------------------------------
26
27%feature("docstring") OT::HaltonSequence::getPermutations
28"Accessor to the permutations used to scramble the sequence.
29
30Returns
31-------
32coll : :class:`~openturns.Collection` of :class:`~openturns.Indices`
33    Collection containing the permutations used to scramble each component of the sequence.
34    Its size is the dimension of the sequence."
35
36// ---------------------------------------------------------------------
37
38%feature("docstring") OT::HaltonSequence::getScrambling
39"Accessor to the scrambling method.
40
41Returns
42-------
43scrambling : str
44    Name of the scrambling method. Possible values are 'NONE', 'REVERSE' and 'RANDOM'."
45