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) numbers
NamesDefaultToHere(1);
Random Reset( 1234 );
dt=NewTable("test",
AddRows(3),
New Column( "X",
Numeric,
"Continuous",
Formula( Random Normal( 0, 1 ) ),
),
);
When running this script, I get the following random numbers
And when I click Apply to the Formula, I get these new random numbers
How does the random seed change when I click Apply? What seed would give me the three numbers above?