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}
|
44 16 19 32 19 11 25 42 41 19 33 50 19 43 17 34 36 47 48 26 12 26 49 32 26
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
40 25 13 39 14 42 46 17 31 43 29 37 44 34 35 15 22 26 19 28 50 47 38 20 24
|
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 32768 16384 4096 2048 1024 1024 256
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
379 383 769 2 613 13 331 769 733 827
|
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}
|
19 12 13 10 14 16 20 15 11 18 17
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
18 16 15 11 17
|
|