Tagged Questions

0
votes
1answer
26 views

Mysql Weight based selection

Hi, I'm trying to select a number of elements from a mysql table based on their weight, example table being as follows. Name | Weight ------------- Bobo | 0.1 Jill | 0.3 Andy | 0. …
2
votes
3answers
205 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 …
2
votes
4answers
372 views

Calculating Hamming weight efficiently in matlab

Given a MATLAB uint32 to be interpreted as a bit string, what is an efficient and concise way of counting how many nonzero bits are in the string? I have a working, naive approa …