Hello
I'm using the Random Shuffle function, but I'd like to set the random seed so that I can reproduce certain results. The random seed function alone doesn't seem to apply, so how do I go about it?
Names Default To Here( 1 );
Random Seed( 123 ); // Fix random seed
exA = [1 2 6, 3 5 8];
Random Shuffle( exA );