active questions tagged random-number-generator+c++ - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T08:42:30Zhttp://stackoverflow.com/feeds/tag/random-number-generator+c++http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1726272/generating-a-160bit-string-which-is-stored-in-an-array1Generating a 160bit string which is stored in an array.unknown (yahoo)2009-11-13T00:00:07Z2009-11-13T00:22:37Z
<p>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 into 20 characters/numbers? I'm trying to do this in C.. Any help is greatly appreciated as I've ran out of ideas and then helpdesk at my uni won't help me..</p>
http://stackoverflow.com/questions/1557208/generating-random-number-between-1-1-in-c0Generating random number between [-1, 1] in C?itsaboutcode2009-10-12T22:09:12Z2009-10-15T19:41:01Z
<p>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.</p>
<p>I wanted to generate a random number between [-1, 1]. How I can do this? </p>
http://stackoverflow.com/questions/1190870/i-need-to-generate-random-numbers-in-c0I need to generate random numbers in C [closed]akway2009-07-27T21:56:58Z2009-07-28T00:16:31Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br />
<a href="http://stackoverflow.com/questions/822323/how-to-generate-a-random-number-in-c">How to generate a random number in C?</a><br />
<a href="http://stackoverflow.com/questions/1167253/implementation-of-rand">implementation of rand()</a><br />
<a href="http://stackoverflow.com/questions/31834/generating-random-terrain-in-blender3d">Generating random terrain in Blender3D</a> </p>
</blockquote>
<p>I need high quality random numbers in C, but I have no idea what to really do. I need to be able to get numbers from 1-100. Any help or maybe point me to where I can find help.</p>
http://stackoverflow.com/questions/1190689/problem-with-rand-in-c4Problem with rand() in C [closed]akway2009-07-27T21:20:52Z2009-07-27T22:11:31Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/1108780/why-do-i-always-get-the-same-sequence-of-random-numbers-with-rand">why do i always get the same sequence of random numbers with rand() ?</a> </p>
</blockquote>
<p>This is my file so far:</p>
<pre><code>#include <stdio.h>
int main(void) {
int y;
y = generateRandomNumber();
printf("\nThe number is: %d\n", y);
return 0;
}
int generateRandomNumber(void) {
int x;
x = rand();
return x;
}
</code></pre>
<p>My problem is rand() ALWAYS returns 41. I am using gcc on win... not sure what to do here.</p>
<p>EDIT: Using time to generate a random number won't work. It provides me a number (12000ish) and every time I call it is just a little higher (about +3 per second). This isn't the randomness I need. What do I do?</p>
http://stackoverflow.com/questions/1167253/implementation-of-rand4implementation of rand()rlbond2009-07-22T18:31:34Z2009-07-24T22:29:14Z
<p>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 more importantly has little space overhead, that produces relatively high-quality random numbers. Does anyone know which algorithm to use or sample code?</p>
<p>EDIT: It's for image processing, so "relatively high quality" means decent cycle length and good uniform properties.</p>
http://stackoverflow.com/questions/1068350/random-number-function-is-misfiring0Random number function is misfiringwillc22009-07-01T10:19:30Z2009-07-01T10:24:37Z
<p>I have a very simple iPhone app that requires a random integer from 1-100.</p>
<p>I have a button that calls the random number function then displays it.</p>
<pre><code>-(IBAction)buttonReleased;
{
srandom(time(NULL));
int theNum = random() % 100 + 1;
numberDisplay.text = [NSString stringWithFormat:@"%d", theNum];
}
</code></pre>
<p>The problem is, if I press the button quickly, sometimes it won't display a new random number.</p>
http://stackoverflow.com/questions/822323/how-to-generate-a-random-number-in-c2How to generate a random number in C?Lucas McCoy2009-05-04T22:07:59Z2009-05-31T08:14:18Z
<p>Is there a function or will I have to use a third party library?</p>
http://stackoverflow.com/questions/922358/consistent-pseudo-random-numbers-across-platforms1Consistent pseudo-random numbers across platformstoastie2009-05-28T18:03:45Z2009-05-28T18:12:52Z
<p>Hello,</p>
<p>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 going to be consistent (I could easily be wrong about this assumption).</p>
http://stackoverflow.com/questions/693880/create-random-number-sequence-with-no-repeats10Create Random Number Sequence with No RepeatsUnknown2009-03-29T00:40:36Z2009-04-03T12:39:09Z
<h3>Duplicate:</h3>
<blockquote>
<p><a href="http://stackoverflow.com/questions/196017/unique-random-numbers-in-o1">Unique random numbers in O(1)?</a></p>
</blockquote>
<p>I want an pseudo random number generator that can generate numbers with no repeats in a random order.</p>
<p>For example:</p>
<p>random(10)</p>
<p>might return
5, 9, 1, 4, 2, 8, 3, 7, 6, 10</p>
<p>Is there a better way to do it other than making the range of numbers and shuffling them about, or checking the generated list for repeats?</p>
<p><hr /></p>
<h3>Edit:</h3>
<p>Also I want it to be efficient in generating big numbers without the entire range.</p>
<p><hr /></p>
<h3>Edit:</h3>
<p>I see everyone suggesting shuffle algorithms. But if I want to generate large random number (1024 byte+) then that method would take alot more memory than if I just used a regular RNG and inserted into a Set until it was a specified length, right? Is there no better mathematical algorithm for this.</p>
http://stackoverflow.com/questions/651421/bimodal-distribution-in-c-or-python2Bimodal distribution in C or PythonCan Berk Güder2009-03-16T17:42:32Z2009-03-16T18:12:05Z
<p>What's the easiest way to generate random values according to a bimodal distribution in C or Python?</p>
<p>I could implement something like the Ziggurat algorithm or a Box-Muller transform, but if there's a ready-to-use library, or a simpler algorithm I don't know about, that'd be better.</p>
http://stackoverflow.com/questions/397867/port-of-random-generator-from-c-to-java9Port of Random generator from C to Java?martinus2008-12-29T15:08:42Z2008-12-30T18:20:27Z
<p>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:</p>
<p><a href="http://school.anhb.uwa.edu.au/personalpages/kwessen/shared/Marsaglia03.html" rel="nofollow">good C random number generator</a></p>
<p>I wanted to port the CMWC4096 code to Java, but it uses several unsigned datatypes so I am not sure how to do this properly. Here is the full C code:</p>
<pre><code>/* choose random initial c<809430660 and */
/* 4096 random 32-bit integers for Q[] */
static unsigned long Q[4096],c=362436;
unsigned long CMWC4096(void) {
unsigned long long t, a=18782LL;
static unsigned long i=4095;
unsigned long x,r=0xfffffffe;
i = (i+1) & 4095;
t = a*Q[i] + c;
c = (t>>32);
x = t + c;
if (x < c) {
x++;
c++;
}
return (Q[i] = r - x);
}
</code></pre>
<p>Can anyone port this to Java? How does this work when you only have signed numbers available?</p>
<p><strong>EDIT:</strong> Thanks everybody for the quick answers! For the first 100 million numbers this java code seems to produce the same result as the C code. It is 3 times faster than Java's java.util.Random.</p>
<pre><code>public class ComplimentaryMultiplyWithCarryRandom {
/**
* Choose 4096 random 32-bit integers
*/
private long[] Q;
/**
* choose random initial c<809430660
*/
private long c = 362436;
private int i;
public ComplimentaryMultiplyWithCarryRandom() {
Random r = new Random(1);
Q = new long[4096];
// TODO initialize with real random 32bit values
for (int i = 0; i < 4096; ++i) {
long v = r.nextInt();
v -= Integer.MIN_VALUE;
Q[i] = v;
}
i = 4095;
}
int next() {
i = (i + 1) & 4095;
long t = 18782 * Q[i] + c;
c = t >>> 32;
long x = (t + c) & 0xffffffffL;
if (x < c) {
++x;
++c;
}
long v = 0xfffffffeL - x;
Q[i] = v;
return (int) v;
}
}
</code></pre>
http://stackoverflow.com/questions/328950/c-the-definitive-truth-about-rand-random-and-arc4random0C: the definitive truth about rand, random and arc4random [closed]Steph Thirion2008-11-30T15:22:13Z2008-12-03T15:31:46Z
<p>There's a lot of conflicting information about this topic. So let's try to agree on a definitive answer:</p>
<p>Which one of these random number generator in C create better randomness: rand, random or arc4random?</p>
<p>note: Just to make the question clear, this is not a question about true randomness, it's only a clash between those 3.</p>
<p><hr /></p>
<p>As pointed out, this question doesn't make much sense, as this is not about C, but about a specific implementation, in my case, cocoa (more specifically the iphone sdk, but my guess is they are the same as far as these functions go). Still, there's some useful information here. I concluded by implementing arc4random, mostly because of its ease of use (no seeding needed), which is an important factor that no one pointed out.</p>
<p>I'm closing the question, and adding the cocoa tag for cocoa developers looking for information on RNGs. Many thanks for those who contributed, and sorry for the confusion.</p>