active questions tagged random - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T20:47:51Z http://stackoverflow.com/feeds/tag/random http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1697359/shake-iphone-to-view-random-html-files 0 Shake iphone to view random html files Momeks 2009-11-08T17:59:39Z 2009-11-08T20:29:10Z <p>hi every , i have 20 HTML files ok ?</p> <p>i am going to shake the iphone , after shook , one of 20 html files shows up as random . i don't know random value on the objective C . can u help me ? here is my code :</p> <pre><code>#pragma mark - - (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration { { if (acceleration.x &gt; kAccelerationThreshold || acceleration.y &gt; kAccelerationThreshold || acceleration.z &gt; kAccelerationThreshold) { // image hidden shakeIcon.hidden = YES; //Random HTML view But here show only one . NSString *path = [[NSBundle mainBundle] pathForResource:@"webViewContent" ofType:@"html"]; NSFileHandle *readHandle = [NSFileHandle fileHandleForReadingAtPath:path]; NSString *htmlString = [[NSString alloc] initWithData: [readHandle readDataToEndOfFile] encoding:NSUTF8StringEncoding]; [self.falView loadHTMLString:htmlString baseURL:nil]; [htmlString release]; } } } </code></pre> <p>for example my html file names are : Myweb 1 ,Myweb 2 , 3,4,5,6,7,8,9 ............</p> http://stackoverflow.com/questions/124671/picking-a-random-element-from-a-set 5 Picking a random element from a set Clue Less 2008-09-24T00:12:17Z 2009-11-08T05:41:52Z <p>How do I pick a random element from a set? I'm particularly interested in picking a random element from a HashSet or a LinkedHashSet, in Java. Solutions for other languages are also welcome. </p> http://stackoverflow.com/questions/1691627/algorithm-to-generate-random-order-of-elements 3 Algorithm to generate random order of elements Ante 2009-11-07T01:43:19Z 2009-11-07T14:09:38Z <p>How to randomize order of approximately 20 elements with lowest complexity? (generating random permutations)</p> http://stackoverflow.com/questions/1687307/replacing-sequence-with-random-number 2 Replacing sequence with random number UlfR 2009-11-06T12:35:54Z 2009-11-06T15:22:51Z <p>I would like to replace some of the sequences I use for id's in my postgresql db with my own custom made id generator. The generator would produce a random number with a checkdigit at the end. So this:</p> <pre><code>SELECT nextval('customers') </code></pre> <p>would be replaced by something like this:</p> <pre><code>SELECT get_new_rand_id('customer') </code></pre> <p>The function would then return a numerical value such as: <code>[1-9][0-9]{9}</code> where the last digit is a checksum.</p> <p>The concerns I have is:</p> <ol> <li>How do I make the thing atomic</li> <li>How do I avoid returning the same id twice (this would be caught by trying to insert it into a column with unique constraint but then its to late to I think)</li> <li>Is this a good idea at all?</li> </ol> <p><strong>Note1</strong>: I do not want to use uuid since it is to be communicated with customers and 10 digits is far simpler to communicate than the 36 character uuid.</p> <p><strong>Note2</strong>: The function would rarely be called with <code>SELECT get_new_rand_id()</code> but would be assigned as default value on the id-column instead of <code>nextval()</code>.</p> http://stackoverflow.com/questions/1684471/iphone-sdk-two-animation-sequences-playing-at-random-help 0 iPhone SDK: Two animation sequences playing at random *help* rocket100 2009-11-05T23:47:36Z 2009-11-06T07:22:40Z <p>I have two animation sequences, and I want one of them to play randomly when a button is pressed. Here is the code:</p> <pre><code>{ color.animationImages = [NSArray arrayWithObjects: [UIImage imageName: @"1.gif"], [UIImage imageName: @"2.gif"], [UIImage imageName: @"3.gif"], [UIImage imageName: @"4.gif"], [UIImage imageName: @"5.gif"], [UIImage imageName: @"6.gif"], [UIImage imageName: @"7.gif"], nil]; [color setAnimationRepeatCount:0]; color.animationDuration = 3; [color startAnimation]; } </code></pre> <p>I don't know how to do the code for this. So if anyone knows please tell me! Thank you!</p> http://stackoverflow.com/questions/1677036/randomize-external-rss-feed-order-in-php 1 Randomize external RSS feed order in PHP Mr. Brent 2009-11-04T22:12:47Z 2009-11-05T16:12:17Z <p>I'm using a third-party AJAX slideshow for a website that takes an RSS feed as its picture source. I would like to randomize the order of the pictures, but that's not a feature of the slideshow (or the RSS feed I'm pulling from).</p> <p>Surely it shouldn't be difficult to write a short function in PHP that takes an external RSS feed, randomizes the items and re-publishes the same feed 'out of order'. I just can't seem to make it work.</p> http://stackoverflow.com/questions/1262955/how-do-i-pick-2-random-items-from-a-python-set 3 How do I pick 2 random items from a Python set? Thierry Lam 2009-08-11T21:12:37Z 2009-11-05T07:06:15Z <p>I currently have a Python set of n size where n >= 0. Is there a quick 1 or 2 lines Python solution to do it? For example, the set will look like:</p> <pre><code>fruits = set(['apple', 'orange', 'watermelon', 'grape']) </code></pre> <p>The goal is to pick 2 random items from the above and it's possible that the above set can contain 0, 1 or more items. The only way I can think of doing the above is to convert the set to a list(mutable) from where I can access 2 random unique index within the length of the set.</p> http://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros 0 How to generate random variable names in C++ using macros? freitass 2009-07-04T13:16:54Z 2009-11-04T17:00:06Z <p>I'm creating a macro in C++ that declares a variable and assigns some value to it. Depending on how the macro is used, the second occurrence of the macro can override the value of the first variable. For instance:</p> <pre><code>#define MY_MACRO int my_variable_[random-number-here] = getCurrentTime(); </code></pre> <p>The other motivation to use that is to avoid selecting certain name to the variable so that it be the same as a name eventually chosen by the developer using the macro.</p> <p>Is there a way to generate random variable names inside a macro in C++?</p> <p>-- Edit --</p> <p>I mean unique but also random once I can use my macro twice in a block and in this case it will generate something like:</p> <pre><code>int unique_variable_name; ... int unique_variable_name; </code></pre> <p>In this case, to be unique both variable names have to be random generated.</p> http://stackoverflow.com/questions/1670867/libraries-or-tools-for-generating-random-but-realistic-text 0 Libraries or tools for generating random but realistic text Carl Summers 2009-11-03T23:38:40Z 2009-11-04T03:15:45Z <p>I'm looking for tools for generating random but realistic text. I've implemented a Markov Chain text generator myself and while the results were promising, my attempts at improving them haven't yielded any great successes.</p> <p>I'd be happy with tools that consume a corpus or that operate based on a context-sensitive or context-free grammar. I'd like the tool to be suitable for inclusion into another project. Most of my recent work has been in Java so a tool in that language is preferred, but I'd be OK with C#, C, C++, or even JavaScript.</p> <p>This is similar to this <a href="http://stackoverflow.com/questions/1578789/library-to-generate-text-from-a-regular-expression-in-java">question</a>, but larger in scope.</p> http://stackoverflow.com/questions/1627934/random-record-from-mysql-database-with-codeigniter 0 Random record from mysql database with CodeIgniter artmania 2009-10-26T23:39:44Z 2009-11-04T02:31:23Z <p>Hi friends,</p> <p>I researched over the internet, but could not find anything...</p> <p>I have a mysql db, and records at a table, and I need to get random record from this table at every page load. how can I do that? Is there any func for that?</p> <p>Appreciate! thanks</p> <p><hr /></p> <p>SORTED: link: <a href="http://www.derekallard.com/blog/post/ordering-database-results-by-random-in-codeigniter/" rel="nofollow">http://www.derekallard.com/blog/post/ordering-database-results-by-random-in-codeigniter/</a></p> <pre><code>$this-&gt;db-&gt;select('name'); $query = $this-&gt;db-&gt;get('table'); $shuffled_query = $query-&gt;result_array(); shuffle ($shuffled_query); foreach ($shuffled_query as $row) { echo $row['name'] . '&lt;br /&gt;'; } </code></pre> http://stackoverflow.com/questions/1658791/random-peoples-name 7 Random people's name crocpulsar 2009-11-01T23:32:59Z 2009-11-04T01:02:33Z <p>I need to generate a list of people's name randomly.</p> <p>Where can I find lists of names? I need a list of first names, a list of middle names and a list of surnames.</p> <p>--EDIT--<br /> Just want to make it clear, these names are only English names.</p> http://stackoverflow.com/questions/1670753/algorithm-to-add-randomly-generated-nsstrings-to-nsmutablearray 0 algorithm to add randomly-generated NSStrings to NSMutableArray samfu_1 2009-11-03T23:09:07Z 2009-11-03T23:28:22Z <p>The goal is to generate an NSString chars in length and assign each string to an array. I'm getting stuck on what I need to do with my algorithm to get the correct result. Here's the sample. The result I get is the same randomly generated string added to my array 26 times instead of 26 DIFFERENT strings added. </p> <p>I've thought about declaring 26 different NSStrings and assigning each result from the algorithm to each string, but that seems inefficient. Thanks for the help.</p> <pre><code>NSMutableString *string = @"expert"; NSUInteger strLength = [string length]; NSString *letterToAdd; NSString *finishedWord; NSMutableString *randomString = [NSMutableString stringWithCapacity: strLength]; NSMutableArray *randomArray = [[NSMutableArray alloc] init]; NSArray *charArray = [[NSArray alloc] initWithObjects: @"a", @"b", @"c", @"d", @"e", @"f", @"g", @"h", @"i", @"j", @"k", @"l", @"m", @"o", @"p", @"q", @"r", @"s", @"t", @"u", @"v", @"w", @"x", @"y", @"z", nil]; for (int a = 0; a &lt; 26; a++) { for (int i = 0; i &lt; strLength; i++) { letterToAdd = [charArray objectAtIndex: arc4random() % [charArray count]]; if([randomString length] &lt; strLength) { [randomString insertString: letterToAdd atIndex: i]; } finishedWord = randomString; } [randomArray addObject: finishedWord]; } NSLog(@"Random Array count %i, contents: %@", [randomArray count], randomArray); </code></pre> http://stackoverflow.com/questions/1664395/select-random-datas-from-file 1 Select Random Datas From File Nathan Campos 2009-11-02T23:36:40Z 2009-11-02T23:49:28Z <p>Hello,</p> <p>I'm learning C# and now I need to build a home project(just to learn how to use file I/O and random). I have a file(names.txt) like this:</p> <pre><code>Nathan John Max Someone </code></pre> <p>But how I can access this file(already know) and select a random name, print it and delete this name from the file? Thanks.</p> http://stackoverflow.com/questions/1656862/iphone-choose-random-value 0 iPhone: choose random value Rupesh 2009-11-01T10:50:29Z 2009-11-02T10:19:10Z <p>hi all, i am new to iPhone Programing i have 10 number say (1,2,3,4,5,6,7,8,9,10) i want to choose randomly 1 number from above 10 number.so how can i choose random number from a set of numbers</p> http://stackoverflow.com/questions/1658808/random-int64-and-float64-numbers 1 Random int64 and float64 numbers Morgoth 2009-11-01T23:42:29Z 2009-11-02T00:43:32Z <p>I'm trying to generate random 64-bit integer values for integers and floats using Numpy, <strong>within the entire range of valid values for that type</strong>. To generate random 32-bit floats, I can use:</p> <pre><code>In [2]: np.random.uniform(low=np.finfo(np.float32).min,high=np.finfo(np.float32).max,size=10) Out[2]: array([ 1.47351436e+37, 9.93620693e+37, 2.22893053e+38, -3.33828977e+38, 1.08247781e+37, -8.37481260e+37, 2.64176554e+38, -2.72207226e+37, 2.54790459e+38, -2.47883866e+38]) </code></pre> <p>but if I try and use this for 64-bit numbers, I get</p> <pre><code>In [3]: np.random.uniform(low=np.finfo(np.float64).min,high=np.finfo(np.float64).max,size=10) Out[3]: array([ Inf, Inf, Inf, Inf, Inf, Inf, Inf, Inf, Inf, Inf]) </code></pre> <p>Similarly, for integers, I can successfully generate random 32-bit integers:</p> <pre><code>In [4]: np.random.random_integers(np.iinfo(np.int32).min,high=np.iinfo(np.int32).max,size=10) Out[4]: array([-1506183689, 662982379, -1616890435, -1519456789, 1489753527, -604311122, 2034533014, 449680073, -444302414, -1924170329]) </code></pre> <p>but am unsuccessful for 64-bit integers:</p> <pre><code>In [5]: np.random.random_integers(np.iinfo(np.int64).min,high=np.iinfo(np.int64).max,size=10) --------------------------------------------------------------------------- OverflowError Traceback (most recent call last) /Users/tom/tmp/&lt;ipython console&gt; in &lt;module&gt;() /Library/Python/2.6/site-packages/numpy/random/mtrand.so in mtrand.RandomState.random_integers (numpy/random/mtrand/mtrand.c:6640)() /Library/Python/2.6/site-packages/numpy/random/mtrand.so in mtrand.RandomState.randint (numpy/random/mtrand/mtrand.c:5813)() OverflowError: long int too large to convert to int </code></pre> <p>Is this expected behavior, or should I report these as bugs in Numpy?</p> http://stackoverflow.com/questions/1643878/c-random-code-field-generator-for-object 2 C# Random Code Field Generator for Object abmv 2009-10-29T13:47:47Z 2009-10-30T14:00:38Z <p>I have an object with the following properties</p> <p><br>GID <br>ID <br>Code <br>Name</p> <p>Some of the clients dont want to enter the Code so the intial plan was to put the ID in the code but the baseobject of the orm is different so I'm like screwed...</p> <p>my plan was to put ####-#### totally random values in code how can I generate something like that say a windows 7 serial generator type stuff but would that not have an overhead what would you do in this case.</p> http://stackoverflow.com/questions/1643431/how-to-get-random-value-out-of-an-array 1 How to get random value out of an array Roland 2009-10-29T12:39:47Z 2009-10-29T13:46:40Z <p>I have a an array called <code>$ran = array(1,2,3,4);</code></p> <p>I need to get a random value out of this array and store it in a variable, how can I do this?</p> http://stackoverflow.com/questions/778718/how-to-test-random-numbers 2 How to test random numbers? Anna 2009-04-22T19:12:20Z 2009-10-29T06:35:36Z <p>i have written in matlab, a program, which is supossed to generate random numbers between 0 and 1. i have test it only with the runstest in matlab, and te result is that the sequence is random. i have seen the histograms too, and they have a beta distribution. i want to test this rng whith other test, such as diehard, ent, or nist, but i don't know how. can someone explain how to use them, or suggest me some other randomness tests. thank you</p> http://stackoverflow.com/questions/1641371/php-random-numbers -1 PHP Random Numbers Brendan Berman 2009-10-29T02:55:43Z 2009-10-29T04:08:54Z <p>i need to print out numbers 1-100 in a random order. the print statement should be:</p> <p>echo 'h{'.$num.'}';</p> <p>what is the shortest code to do this?</p> http://stackoverflow.com/questions/1640258/need-a-fast-random-generator-for-c 1 Need a fast random generator for c++ Martin Andersson 2009-10-28T21:33:34Z 2009-10-28T22:08:28Z <p>Hi guys.</p> <p>I'm trying to do some opt-3 swapping on my TSP generator for euclidian distances, and since I in many cases have more than ~500 nodes, I need to randomly select at least 1 of the 3 nodes that I want to try swapping.</p> <p>So basically I need a random-number function that's <strong>fast</strong>. (the normal rand() is way too slow) It doesn't have to be awesome, just good <em>enough</em>.</p> <p>EDIT: I forgot to mention, i'm sitting at an environment where I can't add any libraries except the Standard Language Library (such as STL, iostream etc). So no boost =/</p> http://stackoverflow.com/questions/1638237/boost-random-number-library-use-same-random-number-generator-for-different-varia 0 boost random number library, use same random number generator for different variate generators scandido 2009-10-28T16:04:38Z 2009-10-28T17:06:00Z <p>It seems that one can use the following code to produce random numbers from a particular Normal distribution:</p> <pre><code>float mean = 0, variance = 1; boost::mt19937 randgen(static_cast&lt;unsigned int&gt;(std::time(0))); boost::normal_distribution&lt;float&gt; noise(mean, variance); variate_generator&lt;mt19937, normal_distribution&lt;float&gt; &gt; nD(randgen, noise); float random = nD(); </code></pre> <p>This works fine, however, I would like to be able to draw numbers from several distributions, i.e. one would think something like:</p> <pre><code>float mean1 = 0, variance1 = 1, mean2 = 10, variance2 = 0.25; boost::mt19937 randgen(static_cast&lt;unsigned int&gt;(std::time(0))); boost::normal_distribution&lt;float&gt; noise1(mean1, variance1); boost::normal_distribution&lt;float&gt; noise2(mean2, variance2); variate_generator&lt;mt19937, normal_distribution&lt;float&gt; &gt; nD(randgen, noise1); variate_generator&lt;mt19937, normal_distribution&lt;float&gt; &gt; nC(randgen, noise2); float random1 = nD(); float random2 = nC(); </code></pre> <p>However, the problem appears to be that nD() and nC() are generating similar sequences of numbers. I hypothesize this is because the constructor for variate_generator appears to make a copy of randgen, not use it explicitly. Thus, the same psuedo-random sequence is being generated and simply pushed through different transformations (due to the different parameters of the distributions). </p> <p>Does anyone know if there is a way, in Boost, to create a single random number generator and use it for multiple distributions? Alternatively, does the design of the Boost random library intend users to create one random number generator per distribution? Obviously, I could write code to transform a sequence of uniform random numbers to a sequence from an arbitrary distribution, but I'm looking for something simple and already built-in to the library. </p> <p>Thanks in advance for your help.</p> http://stackoverflow.com/questions/686353/c-random-float 3 C++ random float hasen j 2009-03-26T15:49:14Z 2009-10-28T06:42:13Z <p>How do I generate random floats in C++?</p> <p>I thought I could take the integer rand and divide it by something, would that be adequate enough?</p> http://stackoverflow.com/questions/1627064/how-could-i-improve-this-c-randomising-method 4 How could I improve this C# randomising method? Neil Barnwell 2009-10-26T20:10:17Z 2009-10-27T18:16:06Z <p>I think I've settled on this as the most simple and unit-testable method for randomising a list, but would be interested to hear of any improvements.</p> <pre><code>public static IList&lt;T&gt; RandomiseList&lt;T&gt;(IList&lt;T&gt; list, int seed) { Random random = new Random(seed); List&lt;T&gt; takeFrom = new List&lt;T&gt;(list); List&lt;T&gt; ret = new List&lt;T&gt;(takeFrom.Count); while (takeFrom.Count &gt; 0) { int pos = random.Next(0, takeFrom.Count - 1); T item = takeFrom[pos]; takeFrom.RemoveAt(pos); ret.Add(item); } return ret; } </code></pre> http://stackoverflow.com/questions/1197321/need-help-generating-discrete-random-numbers-from-distribution 6 Need help generating discrete random numbers from distribution Anthony 2009-07-28T23:38:04Z 2009-10-26T19:44:12Z <p>I searched the site but did not find exactly what I was looking for... I wanted to generate a discrete random number from normal distribution. </p> <p>For example, if I have a range from a minimum of 4 and a maximum of 10 and an average of 7. What code or function call ( Objective C preferred ) would I need to return a number in that range. Naturally, due to normal distribution more numbers returned would center round the average of 7.</p> <p>As a second example, can the bell curve/distribution be skewed toward one end of the other? Lets say I need to generate a random number with a range of minimum of 4 and maximum of 10, and I want the majority of the numbers returned to center around the number 8 with a natural fall of based on a skewed bell curve.</p> <p>Any help is greatly appreciated....</p> <p>Anthony</p> http://stackoverflow.com/questions/659838/simple-random-english-sentence-generator 4 Simple random english sentence generator... Adam Davis 2009-03-18T19:48:41Z 2009-10-26T16:28:32Z <p>I need a simple random English sentence generator. I need to populate it with my own words, but it needs to be capable of making longer sentences that at least follow the rules of English, even if they don't make sense.</p> <p>I expect there are millions of them out there, so rather than re-inventing the wheel, I'm hoping you know of a source for one, or a resource that will give me enough information that I don't have to hunt down my rusty English skills.</p> http://stackoverflow.com/questions/1617630/non-repeating-random-numbers 1 Non repeating Random Numbers. Drahc 2009-10-24T10:41:17Z 2009-10-26T02:49:57Z <p>Im using.</p> <pre><code>for (int i = 1, i&lt;100, i++) int i = arc4random() % array count; </code></pre> <p>But im getting repeats everytime so how can i full out the chosen int value from the range so when the program loops i will not get any dupe?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1620734/how-do-i-delete-a-random-value-from-an-array-in-perl 1 How do I delete a random value from an array in Perl? Nathan Campos 2009-10-25T12:13:01Z 2009-10-25T19:51:01Z <p>I'm learning Perl and building an application that gets a random line from a file using this code:</p> <pre><code>open(my $random_name, "&lt;", "out.txt"); my @array = shuffle(&lt;$random_name&gt;); chomp @array; close($random_name) or die "Error when trying to close $random_name: $!"; print shift @array; </code></pre> <p>But now I want to delete this random name from the file. How I can do this?</p> http://stackoverflow.com/questions/1060521/checking-if-a-graph-is-random-using-the-erdsrenyi-model 2 Checking if a graph is random using the Erdős–Rényi model? unknown (yahoo) 2009-06-29T20:59:01Z 2009-10-25T05:11:01Z <p>Given some graph, I would like to determine how likely it is that it was generated randomly. I was told that a comparison to the Erdős–Rényi model was a good way to get this information, but I can't quite figure out how to do that.</p> <p>Any advice?</p> http://stackoverflow.com/questions/88311/how-best-to-generate-a-random-string-in-ruby 13 How best to generate a random string in Ruby Jeff 2008-09-17T22:24:44Z 2009-10-25T00:32:57Z <p>I'm currently using the following to generate an 8 character pseudo random upper case string [A-Z]</p> <pre><code>value = ""; 8.times{value &lt;&lt; (65 + rand(25)).chr} </code></pre> <p>but it looks junky, and since it isn't a single statement it can't be passed as an argument. To get a mixed case string [a-zA-Z] I further hack into it with</p> <pre><code>value = ""; 8.times{value &lt;&lt; ((rand(2)==1?65:97) + rand(25)).chr} </code></pre> <p>Just looks like trash. Anyone have a better method?</p> http://stackoverflow.com/questions/1594121/r-how-do-i-best-simulate-an-arbitrary-univariate-random-variate-using-its-probab 6 R: How do I best simulate an arbitrary univariate random variate using its probability function? knot 2009-10-20T12:04:19Z 2009-10-24T18:56:37Z <p>R: What's the best way to simulate an arbitrary univariate random variate if only its probability/density function is available?</p>