1%feature("docstring") OT::HaselgroveSequence 2"Haselgrove sequence. 3 4Available constructors: 5 HaselgroveSequence(*dimension=1*) 6 7 HaselgroveSequence(*base*) 8 9Parameters 10---------- 11dimension : positive int 12 Dimension of the points. 13base : sequence of positive float 14 Sequence of positive real values linearly independent over the integer 15 ring, i.e. no linear combination with integer coefficients of these values 16 can be zero excepted if all the coefficients are zero. The dimension of the 17 sequence is given by the dimension of the base. 18 19Examples 20-------- 21>>> import openturns as ot 22>>> sequence = ot.HaselgroveSequence(2) 23>>> print(sequence.generate(5)) 240 : [ 0.414214 0.732051 ] 251 : [ 0.828427 0.464102 ] 262 : [ 0.242641 0.196152 ] 273 : [ 0.656854 0.928203 ] 284 : [ 0.0710678 0.660254 ]"