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}
|
34 43 12 34 40 50 43 43 49 34 18 39 30 25 19 23 25 18 29 15 25 49 30 25 35
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
36 40 12 49 41 14 11 16 23 24 35 18 15 42 25 22 31 33 17 26 34 45 50 38 13
|
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}
|
256 32768 8192 16384 2048 2048 2048 2048 65536
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
929 953 461 809 859 967 283 359 109 79
|
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}
|
10 20 14 16 11 12 13 17 18 19 15
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
11 12 13 14 15
|
|