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}
|
30 13 26 24 19 31 15 50 34 36 49 36 12 42 39 11 31 44 10 26 45 17 24 43 11
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
19 45 13 30 10 41 44 40 17 24 43 21 38 15 50 35 32 49 42 48 29 31 26 11 37
|
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}
|
65536 16384 2048 1024 256 4096 1024 2048 32768
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
929 31 547 499 827 439 937 857 883 137
|
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}
|
14 10 16 18 17 12 19 15 20 13 11
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
19 12 18 10 17
|
|