/* Trembling RAN0 U[0,1) */ /* (C) Copyright 2005 Yosuke Amijima. All Rights Reserved. */ /* Notice: Initial seed of this version is based on rndu for simplicity. */ new; cls; nn=10000; /* Up to 10000 in Light version of GAUSS */ x=ran0t(nn); library pgraph; graphset; call hist(x,29); proc ran0t(nn); local a,c,m,x,i; a=16807; c=0; m=2^31-1; x=zeros(nn,1); /* seed */ x[1]=floor(rndu(1,1)*(m-1))+1; /* integer between 1 and m-1 */ /* LCG */ i=1; do while i<=nn-1; x[i+1]=(a*x[i]+c)%m; i=i+1; endo; /* add trembling factor */ x=x-0.5+rndu(nn,1); x=x/m; x=x.*(x.>=0 .and x.<1)+(1+x).*(x.<0)+(x-1).*(x.>=1); retp(x); endp;