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 21 36 25 43 33 47 28 36 28 10 33 20 39 12 50 40 10 20 35 44 12 18 33 41
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
45 37 38 13 16 21 48 22 15 35 23 10 24 36 17 26 29 33 39 50 44 41 31 14 25
|
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}
|
32768 512 512 65536 16384 2048 16384 4096 65536
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
853 307 281 421 647 827 73 379 409 257
|
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}
|
11 13 18 20 10 15 12 17 14 16 19
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
19 16 11 17 14
|
|