Tagged Questions

5
votes
2answers
1k views

Weighted random numbers in MATLAB

How to randomly pick up N numbers from a vector a with weight assigned to each number? Let's say: a = 1:3; % possible numbers weight = [0.3 0.1 0.2]; % corresponding weights In this case ...
4
votes
2answers
230 views

I need random algorithm with weighing options in .net

I have a requirement in my .net project where I need to select an item from a collection, each item has a Weight (integer from 1 to 10) assigned to it. I need a random generator that would take this ...
3
votes
2answers
263 views

Picking random element by user defined weights

I have a web application where users can add 1-20 strings of text and assign a weight to them of how often it should show up. The system would then choose a random string based on the defined weights. ...
3
votes
3answers
893 views

SQL : select one row randomly, but taking into account a weight

I'm using MySQL. I have a table which looks like that: id: primary key content: varchar weight: int What I want to do is randomly select one row from this table, but taking into account the weight. ...
1
vote
0answers
55 views

Weighted random selection in Cocoa (frequently changing the weights)

I have an array (could make it into a set I think) of around 1000-2000 dictionaries. Each one of those has a key whose value (a float... they don't add up to anything specific) I want to use as a ...
0
votes
2answers
106 views

Random selection based off of floating point weight in PHP

Let's say I have an array with the following values: 0.7523262 0.9232192 1.5824928 5.2362123 What is the best way to randomly pick a value from this array so that the higher the value, the more ...
0
votes
1answer
197 views

PHP Redirect URL based on weight

So I have an application that allows my client to enter in different url's and assign as many as he wants to a specific rotator as long as the weight always totals 100. There is a link we give out ...