( ** Go back to PARENTPAGE ../Gaussian-Distribution-on-UNIX-Random-Device.html)
( ** Go back to HOMESITE https://www.tcnd.com)
( ** Go back to SetSphere https://www.setsphere.com)
Debug: from UNIX urandom by tying a group attributes to UNIX device
Debuig: ASPL set variables can have their attributes tied to lambda code that is executed in real time whenever
a set variable is sourced ...
When a set variable has its attributes tied to the UNIX urandom device, then it is updated everytime it is sourced.
Furthermore, if an attribute is tied to lambda code, then it is being updated with the value returned upong
executing the code.
ASPL 1> R1 = ggtierandomgaussian(grp1,RanGauss1,points,10)
ASPL 2> R2 = ggtierandomgaussian(grp1,RanGauss2,points,10)
ASPL 3> attributes
ASPL 4> setExecattrArgs gaussian1 -mean 0 -variance 2
ASPL 5> setExecattrArgs gaussian2 -mean 0.333 -variance 3
ASPL 6> R1 = ggtierandomgaussian(grp1,RanGauss1,points,10)
ASPL 7> R2 = ggtierandomgaussian(grp1,RanGauss2,points,10)
ASPL 8> @ R1
ASPL 9> @ R2
ASPL 10> bye