!SEED 848586!SETN v n replaces data values 1:n with normal random variables having variance v . Data values outside the range 1 ... n are set to 0.
Anorm !=A !SETN 2.5 10replaces data values of 1 ... 10 (copied from variable A ) with 10 Normal(0,2.5) random values. !SETU v n replaces data values 1:n with uniform random variables having range 0:v . Data values outside the range 1 ... n are set to 0.
Aeff !=A !SETU 5 10replaces data values of 1, \cdots , 10 (copied from variable A ) with 10 Uniform(0,5) random values. !UNIFORM v replaces the variate with uniform random variables having range 0:v .
Udat !=0. !Uniform 4.5 +creates a new variable and fills it with Uniform(0,4.5) random values. These two transformations can be collapsed into one: viz.
Udat !=Uniform 4.5