active questions tagged random - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T16:10:26Z http://stackoverflow.com/feeds/tag/random http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1931656/does-msvcrt-dll-use-a-linear-congruential-generator-for-its-rand-function 0 Does msvcrt.dll use a linear congruential generator for its rand() function? Benjamin Manns 2009-12-19T01:40:26Z 2009-12-19T02:09:32Z <p>I am trying to predict the output of a program that uses msvcrt's rand() function for generating the face of three dice. I believe the code is something like: <code>dice[0] = rand() % 6 + 1; dice[1] = rand() % 6 + 1; dice[2] = rand() % 6 + 1;</code>, and I was wondering if I could use a prediction program for linear congruential generators to predict the next numbers in the sequence.</p> http://stackoverflow.com/questions/1771410/is-there-a-way-to-distinguish-a-guid-from-just-a-random-number 1 Is there a way to distinguish a GUID from just a random number? sharptooth 2009-11-20T15:55:03Z 2009-12-19T01:43:10Z <p>Being able to distinguish a GUID from random data can be useful when debugging obscure code defects.</p> <p>On Windows each GUID generated is of version 4 therefore it has '4' as the first half-byte of the third part. So if the 16-byte sequence violtates that rule it is not a version 4 GUID. For example,</p> <pre><code>567E1ECB-EA1C-42D3-A3ED-87A5D824D167 </code></pre> <p>could be either a version 4 GUID or anything else, but</p> <pre><code>567E1ECB-EA1C-02D3-A3ED-87A5D824D167 //third section starts with 0, not with 4 </code></pre> <p>is not a version 4 GUID.</p> <p>What are other signs of a 16-byte memory block being or not being a valid GUID?</p> http://stackoverflow.com/questions/1925644/ghost-requests-in-asp-net 1 Ghost requests in asp.net? David Lively 2009-12-18T00:59:39Z 2009-12-18T03:50:40Z <p>In an ASP.Net WAP, the home page /default.aspx is receiving periodic requests from I-know-not-where. Thinking this was BS when it was reported, I fired up my local copy of the site under Cassini and set a breakpoint on the home page's page_load() event. Sure enough, every few minutes the breakpoint is hit.</p> <p>Any suggestions? This is a pretty cut-and-dry site with no monitoring services, etc running, especially on my local machine. When the breakpoint is hit, the site's not even open in a browser. Help!</p> <p><strong>update</strong> on the dev box, this appears to be happening in exactly 5 minute increments.</p> <p><strong>update</strong> By examining the request object when the breakpoint is hit, I can tell that the request is coming from the local machine. However, I don't even have a browser open that's pointed at any local site. Argh.</p> <p>I've not been to successfully configure Fiddler to capture any traffic that doesn't go to an outside machine. It's also worth noting that attempting to trace/step over when the break point is hit just runs the process - it doesn't break again until the 5 minutes are up. Wahoo.</p> <p><strong>another update</strong> running the site on a dev server that no one is touching is producing a hit in the log every 5 minutes +- 1 second from 127.0.0.1. There aren't any browsers running on that machine. Also, I'm logging the request url, user agent and session id for every request, and all three are null. Ideas?!?</p> http://stackoverflow.com/questions/93353/create-many-constrained-random-permutation-of-a-list 0 Create many constrained, random permutation of a list Eyal 2008-09-18T15:00:27Z 2009-12-17T18:48:10Z <p>I need to make a random list of permutations. The elements can be anything but assume that they are the integers 0 through x-1. I want to make y lists, each containing z elements. The rules are that no list may contain the same element twice and that over all the lists, the number of times each elements is used is the same (or as close as possible). For instance, if my elements are 0,1,2,3, y is 6, and z is 2, then one possible solution is:</p> <pre> 0,3 1,2 3,0 2,1 0,1 2,3 </pre> <p>Each row has only unique elements and no element has been used more than 3 times. If y were 7, then 2 elements would be used 4 times, the rest 3.</p> http://stackoverflow.com/questions/1550351/generate-two-numbers-that-are-not-equal-in-php 4 Generate two numbers that are NOT equal in PHP Fred Bergman 2009-10-11T10:26:50Z 2009-12-17T17:46:24Z <p>Hello everyone!</p> <p>I need to generate two numbers that are NOT equal in PHP.</p> <p>I know that I use <code>$random1 = (rand()%9);</code> to generate random a number between 0-9. I need to add something to this I guess.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1922944/ironpython-random-seeds-simpy 0 ironpython random seeds simpy Lily 2009-12-17T16:30:19Z 2009-12-17T16:30:19Z <p>hi</p> <p>I am trying to use simpy using IronPython in Visual Studio.</p> <p>I'm having problems with my imports:</p> <pre><code>import sys sys.path.append("C:\\Python26\\Lib") sys.path.append("C:\\SimPy-2.0.1") from SimPy.Simulation import * from random import expovariate,seed </code></pre> <p>When I do this, an error is brought up from my simulation.py class in the import random definition where it says:</p> <blockquote> <p>unexpected token if</p> </blockquote> <p>i'm guessing that it doesnt know which random to use. How should my imports be modified please?</p> <p>Thnx</p> http://stackoverflow.com/questions/1912199/better-random-algorithm 0 Better random algorithm? unknown (yahoo) 2009-12-16T04:05:32Z 2009-12-16T09:17:55Z <p>I'm making a game in c++ and it involves filling tiles with random booleans (either yes or no) whether it is yes or no is decided by rand() % 1. It doesnt feel very random. I'm using srand with ctime at startup, but it seems like the same patterns are coming up. Are there any algorithms that will create very random numbers? Or any suggestions on how I could improve rand()?</p> <p>Thanks</p> http://stackoverflow.com/questions/1911855/adding-randomly-choosen-class-to-html-tag-using-jquery 2 Adding Randomly choosen class to html tag using jQuery Dom 2009-12-16T02:15:23Z 2009-12-16T03:13:47Z <p>Hello Gurus!</p> <p>Whet I need to do is in my menu I would like to add one of the classes (listed below) with completely random order every time when function starts (page load)</p> <p>This is my HTML</p> <pre><code>&lt;div id="menu"&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;About Us&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Portfolio&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Why Us&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Contact Us&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> <p>And this is what I would like to have as the result with every time different order of added classes</p> <pre><code>&lt;div id="menu"&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#" class="li-one" &gt;Home&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" class="li-five"&gt;About Us&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" class="li-three"&gt;Portfolio&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" class="li-two"&gt;Why Us&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" class="li-four"&gt;Contact Us&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> <p>Below I have listed all the classes.</p> <pre><code>.li-one .li-two .li-three .li-four .li-five </code></pre> <p>I have spent lost hour trying to figure that out with no results</p> <p>Thank you very much for your help in advance</p> http://stackoverflow.com/questions/265591/can-one-setup-dev-random-when-using-a-vmvirtual-machine 1 Can one setup dev/random when using a VM(virtual machine)? Robert Gould 2008-11-05T16:00:03Z 2009-12-15T17:49:53Z <p>Does anyone know if it's possible to setup dev/random when running the OS within a VM (VMWare in this case)?</p> http://stackoverflow.com/questions/1892375/matlab-generate-random-numbers 1 MATLAB generate random numbers Tan Wei Jin 2009-12-12T05:08:03Z 2009-12-14T17:43:33Z <p>Hi I am trying to generate random numbers in MATLAB with a random MEAN value.</p> <p>For example, if I use</p> <pre><code>e = mean(rand(1000,1)) </code></pre> <p>the answer for <code>e</code> will always be close to <code>0.5</code>. What I want is for the value of <code>e</code> (mean) to be random, so that <code>e</code> can be 0.1, 0.2, 0.3, etc...</p> <p>Is it correct for me to use <code>e = mean( unifrnd(0,1,[1000,1]) )</code> ?</p> <p>Thanks</p> http://stackoverflow.com/questions/1845456/boostrandom-generate-the-same-number-every-time 1 boost::random generate the same number every time mono 2009-12-04T07:45:28Z 2009-12-14T10:40:29Z <p>main .cpp</p> <pre><code>#include "stdafx.h" #include "random_generator.h" int main ( int argc, char *argv[] ) { cout.setf(ios::fixed); base_generator_type base_generator; int max = pow(10, 2); distribution_type dist(1, max); boost::variate_generator&lt;base_generator_type&amp;, distribution_type &gt; uni(base_generator, dist); for ( int i=0; i&lt;10; i++ ) { //cout &lt;&lt; random_number(2) &lt;&lt; endl; cout &lt;&lt; uni() &lt;&lt; endl; } return EXIT_SUCCESS; } /* ---------- end of function main ---------- */ </code></pre> <p>random_gemerator.h</p> <pre><code>#include "stdafx.h" #include &lt;boost/random.hpp&gt; #include &lt;boost/generator_iterator.hpp&gt; typedef boost::mt19937 base_generator_type; typedef boost::lagged_fibonacci19937 fibo_generator_type; typedef boost::uniform_int&lt;&gt; distribution_type; typedef boost::variate_generator&lt;fibo_generator_type&amp;, distribution_type&gt; gen_type; int random_number ( int bits ) { fibo_generator_type fibo_generator; int max = pow(10, bits); distribution_type dist(1, max); gen_type uni(fibo_generator, dist); return uni(); } /* ----- end of function random_number ----- */ </code></pre> <p>stdafx.h</p> <pre><code> #include &lt;iostream&gt; #include &lt;cstdlib&gt; #include &lt;cmath&gt; using namespace std; </code></pre> <p>every time I run it, it all generate the same number sequence</p> <p>like 77, 33,5, 22 , ...</p> <p>how to use boost:random correctly? </p> http://stackoverflow.com/questions/1897488/how-to-generate-random-values-that-dont-keep-giving-me-the-same-value-in-runs 0 How to generate random values that don't keep giving me the same value in 'runs' of numbers? GordonG 2009-12-13T19:40:35Z 2009-12-13T19:45:10Z <p>Hi I coded this OneAtRandom() extension method:</p> <pre><code>public static class GenericIListExtensions { public static T OneAtRandom&lt;T&gt;(this IList&lt;T&gt; list) { list.ThrowIfNull("list"); if (list.Count == 0) throw new ArgumentException("OneAtRandom() cannot be called on 'list' with 0 elements"); int randomIdx = new Random().Next(list.Count); return list[randomIdx]; } } </code></pre> <p>Testing it using this unit test fails:</p> <pre><code>[Test] public void ShouldNotAlwaysReturnTheSameValueIfOneAtRandomCalledOnListOfLengthTwo() { int SomeStatisticallyUnlikelyNumberOf = 100; IList&lt;string&gt; list = new List&lt;string&gt;() { FirstString, SecondString }; bool firstStringFound = false; bool secondStringFound = false; SomeStatisticallyUnlikelyNumberOf.Times(() =&gt; { string theString = list.OneAtRandom(); if (theString == FirstString) firstStringFound = true; if (theString == SecondString) secondStringFound = true; }); Assert.That(firstStringFound &amp;&amp; secondStringFound); } </code></pre> <p>It seems that <code>int randomIdx = new Random().Next(list.Count);</code>is generating the same number 100 times in a row, I think possibly because the seed is based on the time?</p> <p>How can I get this to work properly? </p> <p>Thanks :)</p> http://stackoverflow.com/questions/1897085/trying-to-generate-several-digit-intervals-in-one-number-lua 0 Trying to generate several digit intervals in one number (LUA) Vlad 2009-12-13T17:17:47Z 2009-12-13T17:29:58Z <p>Basically I have to use a random function that can return a number between 0 and 2^16-1.</p> <p>I am trying to make use of this and generate let's say, 6 intervals between 1 and 6 (thinking of dice poker). Basically use that one number that is randomly generated for me (I can specify range only) and preferably only have to call it once. Then take that number and "split" it into 6 dices where the values will be between 1-6.</p> <p>I am a bit unsure of the technique one would use, one thing that comes to mind is bit masking but I am unsure if this is the right context. </p> <p>From a binary point of view then it's reasonable to have the dice values between 0-5. That would give us the binary number 000-101. Now a max value of the random function return would be 101101101101101101 (six dices, each being "6") and in decimal it means the upper bound on the random int return would be 187245. The lower bound would be 0. Now let's say the random function returns us the number 66508, making it into binary form we get 010|000|001|111|001|100 and that's not good enough! In this case one of the dices would be 111 = 7 and we can't get that when the interval is supposed to be 0-5 (1-6) :(</p> <p>I need to figure out a way a decimal within the limit range can contain six dices with the values 1-6 (0-5) but I am in some need of assistance.</p> http://stackoverflow.com/questions/1866031/generating-sorted-random-ints-without-the-sort 10 Generating sorted random ints without the sort? Phil H 2009-12-08T10:19:17Z 2009-12-13T02:42:55Z <p>Just been looking at a code golf question about <a href="http://stackoverflow.com/questions/350885/create-sort-and-print-a-list-of-100-random-ints-in-the-fewest-chars-of-code">generating a sorted list of 100 random integers</a>. What popped into my head, however, was the idea that you could generate instead a list of positive deltas, and just keep adding them to a running total, thus:</p> <pre><code>deltas: 1 3 2 7 2 ints: 1 4 6 13 15 </code></pre> <p>In fact, you would use floats, then normalise to fit some upper limit, and round, but the effect is the same.</p> <p>Although it wouldn't make for shorter code, it would certainly be faster without the sort step. But the thing I have no real handle on is this: <b>Would the resulting distribution of integers be the same as generating 100 random integers from a uniformly distributed probability density function?</b></p> <p>Edit: A sample script:</p> <pre><code>import random,sys running = 0 max = 1000 deltas = [random.random() for i in range(0,11)] floats = [] for d in deltas: running += d floats.append(running) upper = floats.pop() ints = [int(round(f/upper*max)) for f in floats] print(ints) </code></pre> <p>Whose output (fair dice roll) was:</p> <pre><code>[24, 71, 133, 261, 308, 347, 499, 543, 722, 852] </code></pre> <p><b>UPDATE:</b> <a href="http://stackoverflow.com/questions/1866031/generating-sorted-random-ints-without-the-sort/1866177#1866177">Alok's answer</a> and <a href="http://stackoverflow.com/questions/1866031/generating-sorted-random-ints-without-the-sort/1866055#1866055">Dan Dyer's comment</a> point out that using an <a href="http://en.wikipedia.org/wiki/Exponential_distribution" rel="nofollow">exponential distribution</a> for the deltas would give a uniform distribution of integers.</p> http://stackoverflow.com/questions/1891827/php-mysql-would-results-array-shuffle-be-quicker-than-select-order-by-rand 0 PHP, MySQL - would results-array shuffle be quicker than "select... order by rand()"? Gal 2009-12-12T01:03:47Z 2009-12-12T18:26:44Z <p>I've been reading a lot about the disadvantages of using "order by rand" so I don't need update on that. I was thinking, since I only need a limited amount of rows retrieved from the db to be randomized, maybe I should do:</p> <pre><code>$r = $db-&gt;query("select * from table limit 500"); for($i;$i&lt;500;$i++) $arr[$i]=mysqli_fetch_assoc($r); shuffle($arr); </code></pre> <p><em>(i know this only randomizes the 500 first rows, be it).</em></p> <p>would that be faster than</p> <pre><code>$r = $db-&gt;("select * from table order by rand() limit 500"); </code></pre> <p>let me just mention, say the db tables were packed with more than...10,000 rows.</p> <p><em>why don't you do it yourself?!?</em> - well, i have, but i'm looking for your experienced opinion.</p> <p>thanks!</p> http://stackoverflow.com/questions/1893867/python-random-and-int-to-string-question 0 Python random and int to string question Ton 2009-12-12T16:18:16Z 2009-12-12T17:35:27Z <p>Hi,</p> <p>I am using this line of code to generate a random list of integers:</p> <pre><code>random.sample(range(2000), 100) </code></pre> <p>With this code i know i wont have double value's with my result. Is their maybe a faster way to achieve the same results?</p> <p>Now i actually have to convert these int to string. Whats the fastest way to do this?</p> <p>Thanks</p> http://stackoverflow.com/questions/765679/grab-random-frames-from-video-make-a-gif-image-java 0 Grab random frames from video & make a gif image - Java 2009-04-19T16:38:23Z 2009-12-11T22:44:59Z <p>Hi!</p> <p>I want to know if it's possible to grab random frames from a video and then "stick" these frames together to make a gif image?</p> <p>I intend to achieve the above said idea by programming in Java.</p> <p>What should I use? (I have no previous experience in programming involving videos, although am proficient in Java)</p> http://stackoverflow.com/questions/1885903/how-to-call-a-c-function-from-random-places-inside-another-function 1 How to call a C function from random places inside another function ? shan23 2009-12-11T05:10:20Z 2009-12-11T13:19:05Z <p>Can anyone tell me how to insert a function call (say Yield() ) at random places inside a C function , so that each time the code is run , Yield() gets called from different parts of the code ?</p> <p>I am faced with such a requirement as I'm using 2 threads in a <em>cooperative threading environment</em> , where unless the running thread yields the processor explicitly , the other (waiting) thread cannot start running. I don't want to place the Yield() call at a single point , since that makes the thread sequence deterministic. Without rewiring the entire environment (from cooperative to pre-emptive) , this is the only solution I can think of in which Thread_1() makes the Yield() call at random places inside it, allowing Thread_2() to take over.</p> <p>Any insights into a different solution achieving the same end-goals is also welcome!</p> http://stackoverflow.com/questions/1868102/order-by-rand-alternative 4 ORDER BY RAND() alternative rikh 2009-12-08T16:26:26Z 2009-12-10T11:59:02Z <p>I currently have a query that ends <code>ORDER BY RAND(HOUR(NOW())) LIMIT 40</code> to get 40 random results. The list of results changes each hour. </p> <p>This kills the query cache, which is damaging performance.</p> <p><strong>Can you suggest an alternative way of getting a random(ish) set of results</strong> that changes from time to time? It does not have to be <em>every</em> hour and it does not have to be totally random.</p> <p>I would prefer a random result, rather than sorting on an arbitrary field in the table, but I will do that as a last resort...</p> <p>(this is a list of new products that I want to shuffle around a bit every now and then).</p> http://stackoverflow.com/questions/1870822/cleaner-php-random-text 0 Cleaner PHP Random Text Davey 2009-12-09T00:20:39Z 2009-12-09T09:05:10Z <p>Playing around with generating text randomly with each page refresh using php. Is there a cleaner way to approach this? Also, can this be done with jquery?</p> <pre><code>&lt;?php $random_text = array("Random Text 1", "Random Text 2", "Random Text 3", "Random Text 4", "Random Text 5"); srand(time()); $sizeof = count($random_text); $random = (rand()%$sizeof); print("$random_text[$random]"); ?&gt; </code></pre> http://stackoverflow.com/questions/1868964/how-random-is-urandom 3 How random is urandom? Recursion 2009-12-08T18:34:41Z 2009-12-08T20:29:31Z <p>In Linux, just how random is <code>/dev/urandom/</code>? Is it considered safe?</p> <p>Also is it possible to get a stream of 1's?</p> http://stackoverflow.com/questions/375450/whats-the-efficiency-and-quality-of-this-shuffling-algorithm 3 What's the efficiency and quality of this shuffling algorithm? Tuminoid 2008-12-17T18:01:43Z 2009-12-08T16:35:45Z <p>This recent question about <a href="http://stackoverflow.com/questions/375351/most-efficient-way-to-randomly-sort-shuffle-a-list-of-integers-in-c">sorting randomly using C#</a> got me thinking about the way I've sometimes shuffled my arrays in Perl.</p> <pre><code>@shuffled = sort { rand() &lt;=&gt; rand() } @array; </code></pre> <p>The proposed solution in the mentioned question is <a href="http://en.wikipedia.org/wiki/Fisher-Yates_shuffle" rel="nofollow">Fisher-Yates shuffle</a>, which works in a linear time.</p> <p>The question is: how efficient is my snippet and is such shuffle "really" random?</p> http://stackoverflow.com/questions/1866533/returning-items-randomly-from-a-collection 1 Returning items randomly from a collection Ed 2009-12-08T12:03:25Z 2009-12-08T12:57:02Z <p>I've a method which returns a generic list collection(List) from the database. This collection has got order details i.e., Order Id, order name, product details etc.</p> <p>Also, method the method returns a collection having only the top 5 orders sorted by order date descending.</p> <p>My requirement is that each time the client calls this method, I need to return collection which has got 5 random orders.</p> <p>How do I achieve this using C#?</p> http://stackoverflow.com/questions/1858499/basic-image-rotation-with-jquery 0 Basic image rotation with jQuery Nimbuz 2009-12-07T07:56:21Z 2009-12-07T09:16:40Z <p>I'd like to test banner (two css background images) and rotate them randomly on each page reload. Is it possible to achieve something like that without using any plugins? </p> <p>I just need to rotate two images, which is basically just <strong>swapping css classes randomly</strong> on the banner element, on <strong>each reload</strong>.</p> <p>Many thanks.</p> http://stackoverflow.com/questions/1851610/how-to-order-data-randomly 0 How to order data randomly shin 2009-12-05T08:46:32Z 2009-12-05T09:59:50Z <p>I have the following MySQL. I want to pull the data in random order.</p> <p>Could anyonet teach me how to do it please.</p> <pre><code>$Q = $this-&gt;db-&gt;query('SELECT P.*, C.Name AS CatName FROM products AS P LEFT JOIN categories C ON C.id = P.category_id WHERE C.Name = "Front bottom" AND p.status = "active" '); </code></pre> http://stackoverflow.com/questions/1841014/uniform-random-monte-carlo-distribution-on-unit-sphere 0 Uniform random (Monte-Carlo) distribution on unit sphere. avp 2009-12-03T16:17:42Z 2009-12-05T08:52:36Z <p>Hi!<br> I need a clarification with algorithm generating random values for my pet ray-tracer.<br> I emit rays from one point. And I have the problem with distribution of these rays: I need the distribution to be uniform, but it isn't... </p> <p>The problem I face now is that the distribution being uniform initially is not uniform after my distortions of the space of results. </p> <p>So for example, I generate r and t angles if the polar coordinate system. The distribution is not uniform and it cannot be uniform: space close to each pole has much more density of results than, say, close to equator. The reason is pretty clear: I convert uniformly distributed points from cylindrical space to the spherical. And I distort results. The same problem is if I normalize points generated randomly in the cube. </p> <p>My idea now is this: I want to create a tetrahedron, normalize its vertexes, split each face (triangle) with the point in the middle, normalize it and repeat recursively until I have enough points. Then I "distort" these points a little bit. Then I normalize them again. That's it. </p> <p>I understand that this method is not pure mathematical Monte-Carlo method itself, because I do not use random distribution in any step except for the last one. And I do not like this solution for this complexity. </p> <p>Can anyone suggest anything more simple yet still </p> <ul> <li>random</li> <li>uniform</li> <li>fast</li> <li>simple</li> </ul> <p>Thanks!</p> <p><strong>EDIT:</strong><br> I need a fast method, not just the correct one. That's why I'm asking about Monte-Carlo. Answers provided are correct, but not fast. The method with tetrahedron is fast, but not very "random" => incorrect.<br> I really need something more suitable.</p> http://stackoverflow.com/questions/137783/given-a-function-which-produces-a-random-integer-in-the-range-1-to-5-write-a-fun 79 Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7 praveen 2008-09-26T04:33:32Z 2009-12-05T07:27:01Z <ol> <li>what is simple solution </li> <li>what is effective solution to less minimum memory and(or) cpu speed?</li> </ol> http://stackoverflow.com/questions/686353/c-random-float 5 C++ random float hasen j 2009-03-26T15:49:14Z 2009-12-05T05:04:47Z <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/1789131/linq2sql-efficient-way-to-get-random-elements-with-weight 2 Linq2sql: efficient way to get random elements with weight? Niels Bosma 2009-11-24T10:14:33Z 2009-12-04T07:05:02Z <p>Byt lets say I have an integer weight where i.e. elements with weight 10 has 10 times higher probability to be selected than element with weight 1. </p> <pre><code>var ws = db.WorkTypes .Where(e =&gt; e.HumanId != null &amp;&amp; e.SeoPriority != 0) .OrderBy(e =&gt; /*????*/ * e.SeoPriority) .Select(e =&gt; new { DescriptionText = e.DescriptionText, HumanId = e.HumanId }) .Take(take).ToArray(); </code></pre> <p>How do I solved getting random records in Linq when I need the result to be weighted?</p> <p>I need somthing like <a href="http://stackoverflow.com/questions/58457/random-weighted-choice-in-t-sql">http://stackoverflow.com/questions/58457/random-weighted-choice-in-t-sql</a> but in linq and not only getting one record?</p> <p>If I wouldn't have the weighted requirement, I'd use the NEWID approach, can I adopt this some way?</p> <pre><code>partial class DataContext { [Function(Name = "NEWID", IsComposable = true)] public Guid Random() { throw new NotImplementedException(); } } ... var ws = db.WorkTypes .Where(e =&gt; e.HumanId != null &amp;&amp; e.SeoPriority != 0) .OrderBy(e =&gt; db.Random()) .Select(e =&gt; new { DescriptionText = e.DescriptionText, HumanId = e.HumanId }) .Take(take).ToArray(); </code></pre> http://stackoverflow.com/questions/1844316/random-testimonial-generator -2 Random Testimonial Generator [closed] WebPro360 2009-12-04T01:29:35Z 2009-12-04T01:32:36Z <p>Anyone familiar with a clean, simple javascript (.xml file?) Random Testimonial Generator? Figured I would check here first to see what the top-programmers suggest!</p>