Dear community,
I' have written this function to generate random value at each iteration in a for loop, however, it seems that it doesn't do the expected job
Point initPt(int nx0, int ny0, int nx1, int ny1){
RNG rng;
Point pt;
double D = rng.uniform((double) nx0, (double) nx1);
pt.x = round(D);
D = rng.uniform((double) ny0, (double) ny1);
pt.y = round(D);
return pt;
}
I wrote this demo loop to see the results
for (int i=0; i(i,1) = pt.x;
nest.at(i,2) = pt.y;
cout << pt <
↧