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 33 20 34 49 45 29 16 15 47 47 15 15 21 43 18 49 17 39 19 23 25 50 29 23
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
38 17 39 11 47 12 45 18 33 30 44 15 41 23 24 32 37 25 34 26 31 22 40 16 29
|
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 2048 16384 65536 65536 32768 2048 32768 65536
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
367 821 887 5 23 43 919 43 109 769
|
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}
|
20 18 14 15 13 11 12 17 19 16 10
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
15 18 17 11 10
|
|