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}
|
22 11 42 42 25 32 45 36 42 29 27 37 50 17 19 41 49 39 22 41 19 39 38 25 45
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
24 39 38 29 15 16 48 26 25 41 47 27 18 42 46 11 14 49 40 22 37 21 23 32 50
|
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 2048 2048 4096 256 2048 1024 256 65536
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
199 907 31 773 797 61 587 223 3 59
|
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}
|
12 19 14 11 16 20 13 10 15 17 18
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
11 12 20 17 15
|
|