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}
|
40 13 11 13 41 26 47 10 33 29 18 30 23 14 39 47 31 15 49 10 41 45 39 44 42
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
15 46 34 29 18 37 39 40 38 14 11 10 35 32 21 16 13 27 31 48 50 19 30 41 45
|
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}
|
2048 16384 512 256 32768 1024 2048 256 2048
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
181 937 277 479 971 461 563 307 953 359
|
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}
|
15 16 10 17 14 18 11 13 20 19 12
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
13 15 16 19 14
|
|