How does Random seed change when I click apply?
I use the Random Reset function to set a random seed in a simulation. How does the random seed change when I click Apply on the random formula? Here is an example script generating three random normal(0,1) numbersNamesDefaultToHere(1);
Random Reset( 1234 );
dt=NewTable("test",
AddRows(3),
New Column( "X",
Numeric,
"Continuous",
Formula( Random Normal( 0, 1 ) ),
),
);
When running this s...