Tagged Questions

10
votes
23answers
3k views

Create Random Number Sequence with No Repeats

Duplicate: Unique random numbers in O(1)? I want an pseudo random number generator that can generate numbers with no repeats in a random order. For example: random(10) mig …
9
votes
6answers
1k views

Port of Random generator from C to Java?

George Marsaglia has written an excellent random number generator that is extremely fast, simple, and has a much higher period than the Mersenne Twister. Here is the code with a de …
4
votes
6answers
297 views

Problem with rand() in C [closed]

Possible Duplicate: why do i always get the same sequence of random numbers with rand() ? This is my file so far: #include <stdio.h> int main(void) { int y; …
4
votes
10answers
282 views

implementation of rand()

I am writing some embedded code in C and need to use the rand() function. Unfortunately, rand() is not supported in the library for the controller. I need a simple implementation t …
2
votes
8answers
1k views

How to generate a random number in C?

Is there a function or will I have to use a third party library?
2
votes
3answers
200 views

Bimodal distribution in C or Python

What's the easiest way to generate random values according to a bimodal distribution in C or Python? I could implement something like the Ziggurat algorithm or a Box-Muller transf …
1
vote
3answers
72 views

Generating a 160bit string which is stored in an array.

Hello! I'm trying to generate a random 160bit string which is supposed to be stored in a character array named str[20]. It's obvious that the array holds 20 characters. How can I c …
1
vote
4answers
123 views

Consistent pseudo-random numbers across platforms

Hello, I am looking for a way to generate pseudo random number sequences that will yield identical sequence results for a given seed across any platform. I am assuming that rand() …
0
votes
7answers
744 views

Generating random number between [-1, 1] in C?

I have seen many questions on SO about this particular subject but none of them has any answer for me, so I thought of asking this question. I wanted to generate a random number b …
0
votes
10answers
659 views

I need to generate random numbers in C [closed]

Possible Duplicates: How to generate a random number in C? implementation of rand() Generating random terrain in Blender3D I need high quality random numbers in C, but …
0
votes
2answers
162 views

Random number function is misfiring

I have a very simple iPhone app that requires a random integer from 1-100. I have a button that calls the random number function then displays it. -(IBAction)buttonReleased; { …
0
votes
2answers
1k views

C: the definitive truth about rand, random and arc4random [closed]

There's a lot of conflicting information about this topic. So let's try to agree on a definitive answer: Which one of these random number generator in C create better randomness: …