Hello, Is there a way to have real different random numbers? For the moment, I'm using the rand() function, but this one is generating the same sequence over and over again. I have to unpower my application to have a new series of random numbers. I'm now 'experimenting' (what's in a word...) with the following construction:
. . . srand( rand() ); . . . RandomNumber = ( rand() / 256 ); . . .
Nobody said this forum was a random answer generator! "an extremely high rate of appearance of the value "Have you read the Manual?". It's not a uniform distribution at all." That's probably because the problem domain doesn't have a uniform distribution...!