Tagged Questions
26
votes
7answers
810 views
Why do digits 1, 2 and 3 appear so frequently using C rand() function?
What I am trying to do is to generate some random numbers (not necessarily single digit) like
29106
7438
5646
4487
9374
28671
92
13941
25226
10076
and then count the number of digits I get:
...
21
votes
24answers
22k 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, ...
17
votes
6answers
12k views
Generate random numbers following a normal distribution in C/C++
Does anyone know how I could easily generate random numbers following a normal distribution in C/C++ ?
http://www.mathworks.com/access/helpdesk/help/toolbox/stats/normrnd.html
I don't want to use ...
15
votes
3answers
362 views
Objective-C / C: Why does rand() % 7 always return 0?
This seems to be a really strange issue:
This is my code
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[])
{
@autoreleasepool {
srand((unsigned ...
12
votes
4answers
404 views
Why 1103515245 is used in rand?
I'm talking about this surprisingly simple implementation of rand() from the C standard:
static unsigned long int next = 1;
int rand(void) /* RAND_MAX assumed to be 32767. */
{
next = next * ...
12
votes
10answers
585 views
Random numbers in C
srand(time(NULL));
for(i = 0; i < n; i++){
for(j = 0; j < (n-1); j++){
a[i][j] = rand();
}
}
I try to generate random numbers, but they ...
12
votes
8answers
17k views
How to generate a random number in C?
Is there a function or will I have to use a third party library?
12
votes
6answers
4k 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 ...
12
votes
9answers
2k views
What's the best way to return a random line in a text file using C?
What's the best way to return a random line in a text file using C? It has to use the standard I/O library (<stdio.h>) because it's for Nintendo DS homebrew.
Clarifications:
Using a header in ...
11
votes
7answers
265 views
Is there an alternative to using time to seed a random number generation?
I'm trying to run several instances of a piece of code (2000 instances or so) concurrently in a computing cluster. The way it works is that I submit the jobs and the cluster will run them as nodes ...
9
votes
4answers
244 views
sizeof() of an array with random length
Can you explain how the sizeof() works with a random length array? I thought sizeof() on an array is calculated during the compilation, however, the size of an array with random length seems to be ...
8
votes
3answers
6k views
How to use /dev/random or urandom in C?
I want to use /dev/random or /dev/urandom in C - how can i do it ? I don't know how can i handle them in C, if someone knows please tell me how. Thank you.
8
votes
10answers
2k 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 ...
7
votes
2answers
149 views
Return a dynamic vector from C to R
I am writing some code in C to be called dynamically from R.
This code generates a path of a random Poisson process up to a desired time T.
So at every call to my C function, the length of the ...
7
votes
6answers
258 views
Whats the difference between srand(1) and srand(0)
I just found out the hard way that srand(1) resets the PRNG of C(++) to the state before any call to srand (as defined in the reference).
However, the seed 0 seems to do the same, or the state before ...
7
votes
5answers
687 views
Generate Random number between two number with one rare number
i can generate random number between two numbers in c using this..
arc4random()%(high-low+1)+low;
then now my requirement is...i want to make a number rare....thats mean if
high=5,
low=1,
and ...
7
votes
3answers
309 views
Generating a random cubic graph with uniform probability (or less)
While this may look like homework, I assure you it's not. It stems from some homework assignment I did, though.
Let's call an undirected graph without self-edges "cubic" if every vertex has degree ...
7
votes
7answers
451 views
Cheap and cheerful rand() replacement
After profiling a large game playing program, I have found that the library function rand() is consuming a considerable fraction of the total processing time. My requirements for the random number ...
7
votes
9answers
1k views
filling an array with random number
I trying to fill an array of 20 ints with numbers from 1-20 in random sequence.
here's my code:
int lookup[20]={0};
int array[20]={0};
srand(time(NULL));
for(int i=0;i<20;++i){
bool ...
6
votes
1answer
454 views
Multi-threaded random_r is slower than single threaded version
The following program is essentially the same as the one described here. When I run and compile the program using two threads (NTHREADS == 2), I get the following run times:
real 0m14.120s
...
6
votes
11answers
8k views
Unique random numbers in an integer array in the C programming language
How do I fill an integer array with unique values (no duplicates) in C?
int vektor[10];
for (i = 0; i < 10; i++) {
vektor[i] = rand() % 100 + 1;
}
//No uniqueness here
6
votes
5answers
2k views
Is Windows' rand_s thread-safe?
Just as in title. Is suspect it is, but I couldn't find it anywhere explicitly stated. And for this property I wouldn't like to rely on speculations.
5
votes
1answer
107 views
How to properly seed a mersenne twister RNG?
This is actually not as simple as I first thought.
In the absence of a hardware RNG, what is the best way to seed a Mersenne Twister?
Or should I say, what is an acceptable way to seed a a Mersenne ...
5
votes
5answers
188 views
how to generate large random numbers C
I'm looking for a way to generate large random numbers on the order of 2^64 in C... (100000000 - 999999999), to use in a public key encryption algorithm (as p and q)
I do not want to generate number ...
5
votes
5answers
210 views
Why isn't this number random?
For the following piece of code:
#include<stdlib.h>
#include<stdio.h>
int main()
{
int x;
x = rand()%100;
printf("The Random Number is: %i", x);
return 0;
}
It always ...
5
votes
5answers
1k views
How is the lagged fibonacci generator random?
I dont get. If it has a fixed length, choosing the lags and the mod over and over again will give the same number, no?
5
votes
3answers
763 views
How do I play a tone in Linux using C?
I'm trying to write a program to randomly generate music based on a simple set of rules. I would like the program to be able to generate its own sounds, as opposed to having a file with audio for each ...
5
votes
8answers
1k views
How to generate a good random seed to pass to srand()?
I am writing a C++ program which needs to create a temporary file for its internal usage. I would like to allow concurrent executions of the program by running multiple proccesses, so the temporary ...
5
votes
3answers
1k views
Randomize a string in C
I'm trying to generate random permutations of an 80-character fixed string in C. Much to my dismay, the system I'm working on lacks strfry(). What's the best way for me to generate a random ...
5
votes
1answer
2k views
Is reading /dev/urandom thread-safe?
This is the code:
unsigned int number;
FILE* urandom = fopen("/dev/urandom", "r");
if (urandom) {
size_t bytes_read = fread(&number, 1, sizeof(number), urandom);
DCHECK(bytes_read ...
4
votes
6answers
166 views
c - rand() not so random after fork
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
int i =10;
/* initialize random seed: */
srand(time(NULL));
...
4
votes
4answers
162 views
What is the most correct way to generate random numbers in C with pthread
I have several threads running concurrently and each of them must generate random numbers. I want to understand if there is a pattern to follow, to understand if it is correct to initialize the ...
4
votes
8answers
731 views
Is there anything wrong with this shuffling algorithm?
I have been doing a little recreational holiday computing. My mini-project was a simulation of the Italian game of "tomboli". A key building block was a simulation of the following process;
The game ...
4
votes
4answers
284 views
Generating random numbers from -n to n in C
I want to generate random numbers from -n to n excluding 0. Can someone provide me the code in C? How to exclude 0?
4
votes
12answers
945 views
In C, how do I get a specific range of numbers from rand()?
srand(time(null));
printf("%d", rand());
Gives a high-range random number (0-32000ish), but I only need about 0-63 or 0-127, though I'm not sure how to go about it. Any help?
4
votes
6answers
1k 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 = ...
4
votes
2answers
4k 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 ...
3
votes
4answers
131 views
Unbalanced random number generator
I have to pick an element from an ascending array. Smaller elements are considered better. So if I pick an element from the beginning of the array it's considered a better choice. But at the same time ...
3
votes
5answers
299 views
unbiased random number generator
I am generating the random numbers in a domain by using the following code. When I plot them they look grouped at the right. I could show you my plot but I do not know how to upload it. Basically I ...
3
votes
2answers
106 views
Where in this code generates a random number?
I came across rgba's floating point random number generator:
http://rgba.org/articles/sfrand/sfrand.htm
The explanation is clear and the code is simple. There is one issue: I cannot figure out ...
3
votes
5answers
184 views
C programming - A array and a random number combined question?
this is the part of my code I'm having trouble with. I can't understand why its doing it wrong. I have an array where it stores numbers 0 - 25 which are cases. The numbers are to be randomized and ...
3
votes
3answers
96 views
How to ensure uniqe seeds for the RNG on subsequent process launches?
Summary: I need a simple self-contained way to seed my RNG so that the seed is different every time the program is launched.
Details:
I often need to run the same program (which does calculations ...
3
votes
3answers
207 views
Random number relatively prime to an input
What's a computationally sane way to, given a natural number n, generate a random number that is relatively prime to n?
I'm willing to sacrifice some randomness and coverage of all possibilities for ...
3
votes
3answers
164 views
Scramble a floating point number?
I need a repeatable pseudo-random function from floats in [0,1] to floats in [0,1]. I.e. given a 32-bit IEEE float, return a "different" one (as random as possible, given the 24 bits of mantissa). ...
3
votes
6answers
221 views
What is a pseudo-random integer?
I am reading a C book. In the description of the rand() function, they say:
rand returns a pseudo-random integer in the range 0 to RAND_MAX. RAND_MAX is implementation dependent but at least ...
3
votes
7answers
173 views
Why variables start out with random values in C
I think this is wrong, it should start as NULL and not with a random value. In the case that you have a pointer with a random memory address as its default value it could be a very dangerous thing, ...
3
votes
2answers
204 views
Random Number Generator not working
I use this function to create random numbers between 100000000 and 999999999
int irand(int start, int stop) {
double range = stop - start + 1;
return start + (int)(range * rand()/(RAND_MAX+1.0));
...
3
votes
3answers
272 views
Printing a random number returns a negative number. (/dev/urandom)
I have written a source code to print random numbers within a specified limit.But it is also returning some negative numbers,is this normal?If not how do I rectify it?
#include <stdio.h>
...
3
votes
3answers
3k views
How does rand() work? Does it have certain tendencies? Is there something better to use?
I have read that it has something to do with time, also you get from including time.h, so I assumed that much, but how does it work exactly? Also, does it have any tendencies towards odd or even ...
3
votes
6answers
431 views
Does stdlib's rand() always give the same sequence?
I quite like being able to generate the same set of pseudo-random data repeatedly, especially with tweaking experimental code. Through observation I would say that rand() seems to give the same ...