thanks alot dr. rick please where can i put this y = RandMVBinary(1000, p, Delta); because i have x = RandMVBinary(1000, p, Delta); in my program , and after putting this command y = RandMVBinary(1000, p, Delta); the program will be %include "C:\Users\hp\Desktop\RandMVBinary.sas"; proc iml; load module=_all_; /* load the modules */ p = {0.25 0.75 0.5 0.25 0.30 0.10 0.30 0.55 0.25 0.65}; /* expected values of the X */ Delta = {1 0.15 0.2 0.175 0.15 0.125 0.1 0.075 0.05 0.025, 0.15 1 0.225 0.15 0.175 0.075 0.125 0.1 0.075 0.05 , 0.2 0.225 1 0.225 0.2 0.15 0.15 0.125 0.1 0.075, 0.175 0.15 0.225 1 0.225 0.2 0.175 0.15 0.125 0.1 , 0.15 0.175 0.2 0.225 1 0.225 0.2 0.175 0.15 0.125, 0.125 0.075 0.15 0.2 0.225 1 0.225 0.125 0.175 0.1 , 0.1 0.125 0.15 0.175 0.2 0.225 1 0.225 0.2 0.175, 0.075 0.1 0.125 0.15 0.175 0.125 0.225 1 0.225 0.2 , 0.05 0.075 0.1 0.125 0.15 0.175 0.2 0.225 1 0.2 , 0.025 0.05 0.075 0.1 0.125 0.1 0.175 0.2 0.2 1 }; X = RandMVBinary(1000, p, Delta); y = RandMVBinary(1000, p, Delta); /* compare sample estimates to parameters */ print p, Delta; create MVbinary from X; append from X; close MVB; quit; i get on just one sample i want 2 samples, you mean i must repeat the program one to x and another to y? thanks in advance THANOON
... View more