all parms random randomize randomize_vs_shuffle total
There are main 3 ways for randomizing, a sequence (random), an option (randomly) and an action (randomize)
The sequence 'random'
|
HTML
|
RESULT
|
{sequence random, rows=25, minimal=10, maximal=50 } {$sequence} {/sequence}
|
29 19 44 40 32 24 26 37 37 32 50 31 31 36 17 43 45 22 16 20 17 46 49 10 44
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
26 11 22 48 23 12 37 29 44 38 31 50 20 34 28 39 42 16 35 40 46 14 24 10 47
|
The sequence option 'randomly'
Here the loop index is randomly set before the sequence is executed.
|
HTML
|
RESULT
|
{sequence power=2, rows=10, randomly, from=8, to=16} {$sequence} {/sequence}
|
8192 256 1024 8192 256 32768 256 4096 8192
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
769 523 271 521 509 211 631 29 751 397
|
The sequence action 'randomize'
|
HTML
|
RESULT
|
{sequence from=10, to=20, push='mySeq'}
|
|
{mySeq} {$sequence} {/mySeq}
|
10 11 12 13 14 15 16 17 18 19 20
|
{mySeq randomize } {$sequence} {/mySeq}
|
11 14 10 13 12 18 15 16 17 20 19
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
13 18 19 17 20
|
|