G
Guest
I need to generate a set of random numbers. I know there is a way to do this;
I just do not know how to find it. Please help me
I just do not know how to find it. Please help me
I need to generate a set of random numbers. I know there is a way
to do this; I just do not know how to find it. Please help me
If you want randoms integers between A and B inclusive,
again uniformly distributed, you can use the following formula:
=A + int((B-A)*rand())