I want to generate random numbers (between 0 and 1) in c using Mersenne twister. My code is as follows:
for (i=1; i<=10;i++){
srand(time(NULL));
a=rand();
b=rand();
c=rand();
}
i.e in each iteration of the for loop random numbers will be seeded with the current time and with this seed I will generate 3 random numbers between 0 and 1. How to do this using mersenne twister?
time. Don't do that. Read up some good articles about the subject, first. – Jens Gustedt Dec 24 '11 at 15:07