This tag is for questions pertaining to random numbers, whether pseudo random or truly random.
1
vote
3answers
36 views
JavaScript - Output characters randomly
Not sure how to go about this but I need to output a set of characters x, y and z. The output is 3 characters long and consists of x,y and z. However the characters are as likely as each other. ...
0
votes
1answer
47 views
Counting number of occurrence in randomly generated numbers [closed]
I have a Java program that generates 100 random integers between 0 and 9 and I need to make it display the count for each number. the example of that is this:
...
0
votes
1answer
43 views
Calculating max and min numbers in generated random numbers in Java [closed]
So I have a Java program that generates 100 random integers between 0 and 9 and I need to calculate the max, min and average numbers of generated integers. So far I have
import java.util.Random;
...
1
vote
2answers
65 views
Efficient implementation of an iPod-like shuffle algorithm?
The goal is to pick a random song from 1..N with no repetitions for N songs, and be able to iterate forward and back like in an iPod. I used a hash table to store random songs. Is there a better way?
0
votes
2answers
53 views
javascript: random image selected on refresh
So I have a site in which I have a description area and I have it be a random description on refresh by using the following code:
<script type="text/javascript">
var description = new Array ();
...
-4
votes
1answer
34 views
Generate random code with PHP [closed]
I want to generate a code randomly with php. The length should be 5 alphanumeric chars.
But I want the first value to be A-Z. How can I do that?
I've done the following, but this seemed too obvious ...
92
votes
4answers
4k views
Why do people say there is modulo bias when using a random number generator?
I have seen this question asked a lot but never seen a true concrete answer to it. So I am going to post one here which will hopefully help people understand why exactly there is "modulo bias" when ...
1
vote
3answers
34 views
Is a 64 bit random ID good enough for about 10 million entries?
I was inspired by this unique id code to generate a random 64 bit identifier.
My question: will this be good enough for about 10 million entries?
def self.generateId
...
4
votes
2answers
3k views
Random numbers in a range
This is in Delphi (7 to be exact). How can I generate random numbers within a specific range? Similar to random.randint(1,6) in Python. I'm trying to simulate rolling dice. The other option is to ...
0
votes
1answer
44 views
How can Randomize the cases in switch condition without repeating
Hi I am trying to make an Android App in this model.Main aim is to Randomize the cases in the switch condition Shown in the below code. As I am Again calling the method in each case, The chances of ...
1
vote
3answers
28 views
Random Number in Octave
I need to generate a random number that is between .0000001 and 1, I have been using rand(1) but this only gives me 4 decimal points, is there any other way to do this generation?
Thanks!
0
votes
2answers
156 views
How to display a random image for x second once the activity is first brought up?
I'm trying to display a random image for 5 seconds (I've got 3 images) when my main activity is launched. (It's a kind of tutorial how to use my app and some advertisement). But I just want to display ...
3
votes
2answers
39 views
C: rand() with min and max values including negatives
I am trying to dynamically allocate an array of doubles and set each element to a random value within a range of positive or negative numbers, but I am having difficulty. Right now, I can only figure ...
-1
votes
2answers
35 views
How to have different strings displaying different text each time user opens app?
Basically the app opens up to a menu and at the top it says Welcome to bla bla. I want to change that every time they open the app to something different each time so next time it would say. Bla bla ...
0
votes
3answers
53 views
random procedure wants exact integers in scheme
I am given a real number which is between 0 and 1. This is my niceness-factor. This factor is a kind of probability. I mean if it is 0.2, it means that something will be happen with the probability of ...
-1
votes
8answers
113 views
How to check if 5 random numbers are the same [closed]
I can't figure out how to test if 5 randomly generated numbers are the same.
All i have so far is the creation of them.
dice1 = rand.Next(1,7);
dice2 = rand.Next(1,7);
dice3 = rand.Next(1,7);
...
-1
votes
2answers
53 views
Best method of finding random English words
I'm looking for the best way to find a random English word using an Android app. Is there a better way than saving a .txt file with all the words in your res/ folder, such as
...
-1
votes
8answers
132 views
Getting random numbers with two digits despite being less than 10
I want my program to randomly select a date to serve as a birth date. The first randomized number is the year, the second is the month and the last one is the day.
Random rand = new Random();
for ...
2
votes
1answer
47 views
Select random row for each group
I have a table like this
ID ATTRIBUTE
1 A
1 A
1 B
1 C
2 B
2 C
2 C
3 A
3 B
3 C
I'd like to select just one random attribute for each ID. The result ...
0
votes
2answers
64 views
Limit number of products displayed in random products block in Magento
How can the solution provided in Magento limit the number of products shown with in the new products block be applied to a random products block displayed on the home page?
I currently have the code
...
-3
votes
1answer
74 views
generate random image from database php [closed]
I'm trying to create a random image script that selects from an existing list of different users images within a database but i'm having no luck. Anyone knows of a way to do it?
Here's the code...
...
2
votes
4answers
64 views
java use Regular Expressions to generate a string
i want to generate random String who have this form
[A-Za-z0-9]{5,10}
I don't have any idea how to do it, i should use regular expressions or random function ?
0
votes
0answers
19 views
Unique objects from a random list, only one of each type can ever be present universally (Java)
Currently I am writing a program (in Java) that mimics the process of cellular reproduction (Both Mitotic and Meiotic reproduction(In plain English: Sexual and Asexual reproduction)), alongside of the ...
19
votes
5answers
12k views
Best way to generate a random float in C#
What is the best way to generate a random float in C#?
Update: I want random floating point numbers from float.Minvalue to float.Maxvalue. I am using these numbers in unit testing of some ...
-1
votes
1answer
73 views
How to ignore negative value in random number generator
I am using the BigInteger class to generate random a large prime number but I keep getting negative value. How is it possible to ignore all the negative returns? How should I make it to a fix 10 ...
1
vote
3answers
72 views
Is my password generating function inefficient? [closed]
I have this javascript password generating function. Right now I'm discarding passwords that don't match the selected specifications. For example if the password doesn't contain numbers, I discard it ...
3
votes
3answers
2k views
What's the disadvantage of mt_rand?
What's the definition of bias in:
The distribution of mt_rand() return values is biased towards even numbers on 64-bit builds of PHP when max is beyond 2^32.
If it's the kind of bias stated in ...
0
votes
1answer
35 views
Java - how can I check what is exactly entered into a JOptionPane.showInputDialog
This is my Code
import java.util.Random;
import javax.swing.JOptionPane;
public class randomnumbersv2 {
public static void main(String[] args){
Double randomnumber = ...
-2
votes
2answers
78 views
android how to get 4 images in array from ten array of image randomly
I want to get four images from a array but I need same position images from other array
as like in example.
images = new int[] {
R.drawable.a, R.drawable.f, R.drawable.k,
R.drawable.u, ...
2
votes
4answers
2k views
jQuery pick a random value from a array of strings
I know how do this in PHP, but in javascript arrays are weird.
So I have a set of image transitions which have effects that use easing equations.
For certain effects I want to pick up a random value ...
1
vote
1answer
71 views
How to set TextView to other random TextView in same class?
I would like to have a TextView in my Android App be set to another TextView in the same class randomly. I tried this:
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
pop ...
1
vote
1answer
71 views
Random integer / occurrences (C++) issues
I've been currently stuck on a C++ problem for about an hour and half. Here's the question:
Write a program that generates one hundred random integers between 0 and 9 and displays the count for each ...
3
votes
2answers
69 views
Change the speed of /dev/urandom
Is there a way to control the speed of /dev/urandom
For example, I have such generator of binary sequences :
grep -ao "[01]" /dev/urandom|tr -d \\n
I need to make it more slow, 100 symbols at ...
1
vote
5answers
1k views
Random file generator code?
Does anyone have a simple shell script or c program to generate random files of a set size
with random content under linux?
3
votes
1answer
63 views
Generate an array of random values from a created function to be plotted
I have a function:
f = x**0.5*numpy.exp(-x/150)
I used numpy and matplot.lib to generate a plot of f as a function of x with x:
x = np.linspace(0.0,1000.0, num=10.0)
I am wondering how do I ...
1
vote
2answers
34 views
Divide records into groups - quick solution
I need to divide with UPDATE command rows (selected from subselect) in PostgreSQL table into groups, these groups will be identified with integer value in one of its columns. These groups should be ...
0
votes
2answers
75 views
Scramble string [duplicate]
How can i randomized each string in Array words... for the word "Position" to "Psioiont". basically what i need to do is i want to display the i an funny way where a person has to think before he ...
7
votes
6answers
161 views
How to really shuffle a deck of cards
When I need to shuffle a deck of poker cards in Java/Android, I use Collections.shuffle(List<?> list), of course. I've ever been doing this and the results seemed acceptable. But they aren't.
...
-1
votes
0answers
34 views
php random co,ods with no repeats
I've wrote code that randomise co,ods for whatever amount of enemies and makes sure it isn't the same as the users co,ods. Here it is.
$me = 4; //no of melee enemies
$ur = 5; //row
$uc = 3; //col
...
0
votes
3answers
97 views
Random number generation except some given numbers
I'm searching for a primary key for CMS that I'm creating that not be in an ascending or descending sequence so I decided to use random numbers.
I want to use random numbers as PK and because of ...
0
votes
1answer
31 views
PHP Need random location for file_get_contents not just one location
Here is part of my code. I'm having trouble making this part work where I need to get the contents of random locations. I know how to file_get_contents from a url but I need to get random url contents ...
1
vote
3answers
137 views
Pick random element from set with non-uniform distribution?
I would like to have a set and have its elements have probabilities associated with them, so when I pick an element at random from the set, the distribution follows the probabilities associated with ...
2
votes
6answers
3k views
Practicing buffer overflow attack in Ubuntu
I am trying to learn to use buffer overflow attack in Ubuntu. Unfortunately, I cannot turn off Address Space Layout Randomization (ASLR) feature in this OS, which is turned on by default. I have tried ...
-2
votes
0answers
47 views
Generate random image collage with occassional overlap [closed]
I'm trying to implement the random collage effect as seen on this site:
http://www.victoriabeckham.com/look
I've checked their coding, but have no figured out how to implement it. I'd like to keep ...
0
votes
1answer
720 views
How to obtain a random sample from a categorical distribution using Matlab's rand()?
I want to generate samples according to a simple categorical probability distribution, e.g.
p(A) = 0.1
p(B) = 0.5
p(C) = 0.25
p(D) = 0.15
Using rand(), which uniformly generates samples in (0,1] ...
7
votes
3answers
169 views
High density random strings in Javascript
I'm currently generating UUIDs in Javascript with this function (How to create a GUID / UUID in Javascript?):
lucid.uuid = function() {
return ...
0
votes
2answers
32 views
Initiating a second Random object using the same seed
Using a seed you can get a Random object to spit the same sequence of numbers over and over again. But what if you want to shut down your app, relaunch it and continue spitting numbers from where you ...
22
votes
1answer
351 views
Why are c++11 random distributions mutable?
I thought that the value generated by the c++11 random distribution (uniform_int_distribution, for instance), depends only on the state of the generator which is passed to the operator(). However, for ...
2
votes
1answer
29 views
Get random item for array based on different probabilities?
Okay, imagine I'm creating a Pokemon game in JavaScript. I have an object like this...
pokemon = {
"pikachu": {hp: 100, probability: 0.1},
"squirtle": {hp: 90, probability: 0.2}
};
I basically ...
-1
votes
1answer
49 views
Random angle in matlab [closed]
I'm trying to write a matlab program which is able to a random walk, but each step/vector has the same length and the thing that determines the direction is a "random" angle. The angle is not quite ...










