1
vote
3answers
76 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 change the 160bits …
0
votes
7answers
813 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 between [-1, 1]. How …
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)
might return
5, 9, 1, …
4
votes
10answers
292 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 that is fast, but …
4
votes
6answers
314 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;
y = …
0
votes
10answers
705 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 I have no idea what …
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?
0
votes
2answers
167 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;
{
…
1
vote
4answers
125 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()/srand() is not …
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 description:
good C …
2
votes
3answers
209 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 transform, but if there's …
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: rand, random or …
