Tagged Questions

12
votes
10answers
574 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 ...
9
votes
9answers
8k views

Recommended way to initialize srand?

I need a 'good' way to initialize the pseudo-random number generator in C++. I've found an article that states: In order to generate random-like numbers, srand is usually initialized to some ...
7
votes
6answers
226 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 ...
6
votes
5answers
2k views

rand() generating the same number – even with srand(time(NULL)) in my main!

So, I'm trying to create a random vector (think geometry, not an expandable array), and every time I call my random vector function I get the same x value, though y and z are different. int main () { ...
5
votes
4answers
115 views

How often should I call srand() in a C++ application?

I have a C++ application which calls rand() in various places. Do I need to initialize srand() regularly to ensure that rand() is reasonably random, or is it enough to call it once when the app ...
5
votes
4answers
144 views

What is the best practice when writing Perl tests that involve randomness?

While working on some updates to my module List::Gen, I decided to add a ->pick(num) method, which will return a num sized list of random elements from its source. To test this, I used srand to ...
5
votes
5answers
188 views

Repeatable randomness in Ruby

I know I can "restart" my rand calls by calling srand with a seed, but surely this would affect future calls to rand by other library methods, including cryptographic methods? How can I repeat my ...
4
votes
4answers
149 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
4answers
78 views

Is it possible to get an appriximtion to a seed based on a finite sequance of pseudo random numbers?

suppose I have some numbers that form a series for example : 652,328,1,254 and I want to get a seed that if I ,for example ,do srand(my_seed); I will get some kind of approximation with bounded ...
4
votes
4answers
750 views

Find out what a random number generator was seeded with in C++

I've got an unmanaged c++ console application in which I'm using srand() and rand(). I don't need this to solve a particular problem, but was curious: is the original seed passed to srand() stored ...
4
votes
5answers
767 views

Issues with seeding a pseudo-random number generator more than once?

I've seen quite a few recommendations for not seeding pseudo-random number generators more than once per execution, but never accompanied by a thorough explanation. Of course, it is easy to see why ...
3
votes
4answers
165 views

srand seed consistency between physical machines

I'm not quite sure how to phrase this question, but I couldn't find any others like it. Say I have this code: srand(1); srand(SOME_DEFINED_CONST_INT); If I run this executable on a number of ...
3
votes
1answer
317 views

Random numbers in POSIX

I'm looking to generate large, non-negative integer random values on a POSIX system. I've found 2 possible functions that fit the bill, and their respective initializers: #include ...
3
votes
4answers
151 views

create a random sequence, skip to any part of the sequence

In Linux. There is an srand() function, where you supply a seed and it will guarantee the same sequence of pseudorandom numbers in subsequent calls to the random() function afterwards. Lets say, I ...
2
votes
3answers
199 views

generating random numbers - srand c++

I am having trouble using srand. i am trying to generate a random number in the interval 100 to 200. The number will keep being generated and placed in an array. Once the method is called again the ...
2
votes
4answers
149 views

C custom random function

I would like to create a fast lightweight function in C language that returns a pseudo random unsigned char. The challenging part for me (an ANSI C programmer)is that I cannot use the <stdio.h> ...
2
votes
4answers
192 views

How to eliminate all sources of randomness so that program always gives identical answers?

I have C++ code that relies heavily on sampling (using rand()), but I want it to be reproducible. So in the beginning, I initialize srand() with a random seed and print that seed out. I want others to ...
1
vote
4answers
135 views

C Programming - bizarre output from rand()

Below is a sample program I got to practice the use of the rand() function. The weirdest thing is that every time the program is run, the first number generated by rand() (rand[0] in the program's ...
1
vote
3answers
136 views

Cross-OS distributed computing in C++, rand() issue

I'm working on a small distributed computing project. The server can't handle the calculations without crashing Apache in the process, so I'm giving these calculations to the users. The basic idea is ...
1
vote
5answers
1k views

C++ random number from a set

Is it possible to print a random number in C++ from a set of numbers with ONE SINGLE statement? Let's say the set is {2, 5, 22, 55, 332} I looked up rand() but I doubt it's possible to do in a ...
0
votes
2answers
68 views

rand from -30 to 30

Hello I want print numbers from 30 to -30, this is my code #include <iostream> #include <ctime> #include <cstdlib> using namespace std; int main(){ srand(time(0)); int ...
0
votes
3answers
34 views

How to get the seed value from a random number generator in PHP

I would like to get the seed value after the rand() or mt_rand() is used. Essentially I want to store the seed so that I can use this seed to continue generating random numbers next time php is ...
0
votes
2answers
22 views

generate reliable pseudorandom number

I want to write a multiplayer game on iOS platform. The game relied on random numbers that generated dynamically in order to decide what happen next. But it is a multiplayer game so this "random ...
0
votes
2answers
47 views

Error with C functions rand() and s(rand) applied to vectors

I actually ask rand() to generate numbers between 1 and 10(rand() %10 +1, with srand(time(NULL)) before) and the first value is ALWAYS higher than 10: it's a random one too, between 10 and 20. I ...
0
votes
6answers
170 views

srand not random at all - alternatives?

I was toying around with arrays, populating with pseudo random numbers, finding minimum and maximum values and their indices and number of occurrences and I noticed something strange - when using ...
0
votes
2answers
99 views

Bingo Board: Generating unique values

I'm having trouble generating unique values which do NOT repeat for this bingo board. My code is relatively simple: I use a nested for loop to generate the values with some print statements; upon each ...
0
votes
3answers
189 views

Multidimensional array with rand()

I want to create a multidimensional array with just two values : 0 or 1. I use the srand/rand functions but array contains only 0. Here is the code : #define NB_LINE 4 #define NB_COLUMN 11 int ...
0
votes
3answers
406 views

srand(time(null)) on iPhone don't work =(

I need generate random numbers in my iPhone game. I using rand() function. But it isn't enough random. I tried using srand with time(Null). But my random generator was periodic. /dev/random isn't an ...
0
votes
5answers
154 views

RNG crashing c++ program

I am currently coding a roguelike, and naturally am using a lot of random number generation. The problem I'm running up on is that if I "overheat" rand(); my program will crash. If i'm only ...
0
votes
4answers
170 views

Random Number PHP Confusion

So lets say I have 2 numbers in decimals (eg .75 and .25). I am trying to make a function that gets these 2 numbers and chooses a "winner" randomly but based on those 2 numbers' percentages. In short ...
0
votes
3answers
312 views

C++ random int function

Hello dear members of stackoverflow I've recently started learning C++, today I wrote a little game but my random function doesn't work properly. When I call my random function more than once it ...
0
votes
3answers
325 views

rand () for c++ with variables

int userHP = 100; int enemyHP = rand() % ((userHP - 50) - (userHP - 75)) + 1; okay, for some reason this doesnt seem to work right, im trying to get 50 -25 hp for enemys. also id rather it be a ...
0
votes
1answer
673 views

Correct use of s/rand or Boost::random

I know this kind of question has been asked a few times, but alot of them answers boil down to RTFM, but I'm hoping if I can ask the right question... I can get a quasi-definitive answer for everyone ...
-1
votes
1answer
266 views

Create a random even number between range

OK I need to create an even random number between 54 and 212 inclusive. The only catch is that it has to be done in a single statement. I have a class to generate random number within a range, but ...
-5
votes
4answers
115 views

How can I generate a random number between 5 and 25 in c++ [closed]

Possible Duplicate: Generate Random numbers uniformly over entire range C++ random float How can I generate a random number between 5 and 25 in c++ ? #include <iostream> #include ...