This tag is for questions pertaining to random numbers, whether pseudo random or truly random.

learn more… | top users | synonyms (9)

-3
votes
2answers
61 views

Random URL redirect using PHP and MySQL

I have a question about adding a link to my website that when 'clicked' will send the user to a random URL stored in my MySQL database. My database is titled "movie" and I would like to be able to ...
-4
votes
2answers
58 views

Listing random numbers [closed]

I am trying to complete a section of code that allows a user to input a number (ex 12) which then lists 12 random numbers. I've created the loop for it and it outputs a random number, but only ever ...
49
votes
9answers
10k views

Generate a random point within a circle (uniformly)

I need to generate a uniformly random point within a circle of radius R. I realize that by just picking a uniformly random angle in the interval [0 ... 2π), and uniformly random radius in the ...
0
votes
1answer
29 views

Adding an input match-randomizer with JS / jQuery? V.2

I am trying to make a basic randomizer that can match things. Sort of like a date(Romance) picker, but different situation. I want the product to look like this: (User Input A1) (User Input A2) ...
-1
votes
1answer
57 views

Macbook Pro Randomly Freezing [closed]

Here is the console log where I believe the freeze is occurring. This freeze happens randomly with no obvious correlation with applications, websites, etc. I recently upgraded ram from 4gb to 8gb, but ...
0
votes
2answers
41 views

Adding an input match-randomizer with JS / jQuery? (Edited) [closed]

I am trying to make a basic randomizer that can match things. Sort of like a date(Romance) picker, but different situation. I want the product to look like this: (User Input A1) (User Input A2) ...
0
votes
1answer
79 views

Entering 40000 rows in sql server through loop

I have to make a database system that is purely on SQL Server. It's about a diagnostic lab. It should contain at least 40,000 distinct patient records. I have a table named "Patient" which contains an ...
-3
votes
3answers
70 views

generate random NOT in array [duplicate]

I am trying to generate a random number that does NOT exist in a restricted number array. js var restricted = [3, 4, 7]; function getRand () { rand = Math.floor(Math.random() * 10); if ...
1
vote
2answers
92 views

What data structure can I use to access its contents randomly?

I need to add a bunch of items to a data structure and then later access ALL of the items within it in a random order. How can I do this? To be more specific, I am currently adding URLs to a ...
0
votes
2answers
77 views

How to restart array once filled on windows form? [closed]

I created a form which asked the user to guess the number. I created an array on 100 ints, created a method to get random numbers to fill the array. All is working fine but I am required to create ...
23
votes
4answers
449 views

Random Engine Differences

The C++11 standard specifies a number of different engines for random number generation: linear_congruential_engine, mersenne_twister_engine, subtract_with_carry_engine and so on. Obviously, this is a ...
-5
votes
6answers
77 views

increasing numbers with jQuery

Is there a simple jQuery way to generate numbers using a .class containing different numbers more and more increasing after a few seconds? Example : before : <p ...
0
votes
1answer
42 views

How to move to next case in switch condition

I am in need of a code, using which in my Android App, I want to go through all the cases of switch condition , (Not randomly!!!).I am able to move it randomly as follows. public void ...
0
votes
2answers
50 views

Javascript conditional callbacks

I'm currently using javascript to do some experiments and although I'm not new to JS I have a doubt that I hope the good folks at SO will be able to help. Basically I'm making a jsonp request to a ...
0
votes
0answers
17 views

Most effective way of displaying random string (with metadata) on click

So here's the breakdown of what I'm trying to achieve: Medium: Web To have a set (hardcoded) list of strings that can be called upon and displayed randomly (one by one, changing each time you ...
-4
votes
2answers
84 views

conditions in random walk algorithm

I'm a beginner in programming and I have been assigned a mini-project. the instructor was very unclear as to what I should exactly do. All I know is that it's a "random walk" and I should not be using ...
0
votes
2answers
59 views

Random number in table SQL Server

Please help me CREATE TABLE UNIVERSITY ( ID INT, FirstName nvarchar(100), LastName nvarchar(100) ) Need that the ID is automatically taken randomly always different ...
-5
votes
0answers
83 views

In C++, srand(time(NULL)) and rand() produce the same number and fail to format using %04X. (NOT in loops!!!)

I have a problem in my program, the srand(time(NULL)) and rand() always produce a same number, and when I fail to format it. Here is the code: char AuthCode[150]; srand(time(NULL)); ...
-2
votes
0answers
29 views

how to calculate the real probability [closed]

Say I have a 50% probability of winning with person 1. And a 50% probability of winning with person 2. Then I will play with both persons one after another. Before the matches, what was the ...
4
votes
9answers
811 views

Generating an Odd Random Number between a given Range

How to generate an odd Random number between a given range.. For Eg: For range between 1 to 6 .. Random No is 3 or 1 or 5 Method for Generating Random No : Random_No = Min + ...
0
votes
1answer
14 views

Getting same numbers within two event methods on windows form

I have created a from which takes the user input and compares it to 100 randomly generated numbers. Once they click the guess button the result is shown. To aid the user I am supposed to give them a ...
0
votes
2answers
54 views

Random exhaustive (non-repeating) selection from a large pool of entries

Suppose I have a large (300-500k) collection of text documents stored in the relational database. Each document can belong to one or more (up to six) categories. I need users to be able to randomly ...
0
votes
1answer
45 views

Manage position of a moving object

I'm making my first iOS app, but I have a problem... Moving objects come from the top of the screen to the bottom. The goal of the game is to kill moving objects (which have a random position.y) ...
2
votes
4answers
71 views

Generate ID fast and with high probability of uniqueness

I want to generate ID to event that occur in my application. The event frequency is up to the user load, so it might occur hundreds-thousand of time per second. I can't afford using UUID.randomUUID() ...
218
votes
35answers
80k views

How best to generate a random string in Ruby

I'm currently using the following to generate an 8 character pseudo random upper case string [A-Z] value = ""; 8.times{value << (65 + rand(25)).chr} but it looks junky, and since it isn't a ...
-8
votes
2answers
45 views

Random Number Creation With Percentage in a certain Range [closed]

Can anyone help me create random numbers from 10-30% of a number? (in java) A RANDOM NUMBER FROM 10% TO 30% OF X; EXAMPLE 10 - 30% OF X ARE... 11,20,26,30,29,22....
0
votes
0answers
28 views

Creating a game that randomly changes panels in C#/.NET?

I want to create a game/software for my steph-daughter who has special needs. She is moderat mentally impaired. I want to create a game that motivate her to learn to write, so she can communicate ...
-1
votes
4answers
42 views

Unique Random Integer Generator

I'm trying to make a random Integer generator that produces unique numbers. Does anyone has any ideas how's that possible?
-3
votes
1answer
102 views

How do I make a random word generator in python programming? [closed]

im doing this as a flash card game and must pull data out of a text doc and make a random word generator with each word showing a right and two wrong answers import random ...
2
votes
2answers
33 views

Generating an even random range in Netezza

Netezza says that its random() function generates a float between 0.0 and 0.99999... I'm trying to generate random ints within a range (e.g., between 5 and 10). The internet told me to use an ...
41
votes
4answers
18k views

Random date in C#

I'm looking for some succinct, modern C# code to generate a random date between Jan 1 1995 and the current date. I'm thinking some solution that utilizes Enumerable.Range somehow may make this more ...
225
votes
4answers
65k views

How do I randomly select an item from a list using Python?

Let's say, as an example, I have the following list: foo = ['a', 'b', 'c', 'd', 'e'] What is the best way to retrieve an item at random from this list?
4
votes
8answers
10k views

Python: How to make a list of n numbers and randomly select any number?

I have taken a count of something and it came out to N Now I would like to have a list, containing 0 to N numbers in it. Example: N = 5 then, count_list = [1, 2, 3, 4, 5] How would I be able to do ...
2
votes
2answers
87 views

Problems with std::piecewise_constant_distribution and std::vector

Given a bunch of strings I'm trying to create a program that can mimic a pseudo-random behaviour with weighted distribution based on my input. So far I came up with this #include <iostream> ...
12
votes
6answers
12k views

how to base64 encode /dev/random or /dev/urandom?

cat /dev/urandom is always a fun way to create scrolling characters on your display but in that output, there is too many non character output. now i was thinking, is there an easy way to encode on ...
0
votes
1answer
44 views

Using the if statement and for loop to write a program that generates N random numbers (and more)

The question: Write a matlab program that i) generates N<=20 random numbers in the interval [a,b], where N, a, b are entered via keyboard My attempt: a = input ('a=') b = input ('b=') N = ...
8
votes
3answers
1k views

Better way to shuffle two numpy arrays in unison

I have two numpy arrays of different shapes, but with the same length (leading dimension). I want to shuffle each of them, such that corresponding elements continue to correspond -- i.e. shuffle them ...
2
votes
3answers
1k views

Math question regarding Python's uuid4

I'm not great with statistical mathematics, etc. I've been wondering, if I use the following: import uuid unique_str = str(uuid.uuid4()) double_str = ''.join([str(uuid.uuid4()), str(uuid.uuid4())]) ...
0
votes
3answers
70 views

Create a random CLLocationCoordinate in a certain area

I've got an MKMapRect. How do I create a random CLLocationCoordinate inside there? I know there is arc4random(), but how can I use it for GPS Coordinates?
5
votes
2answers
147 views

Randomness in Python

I'm using random.random() to get a random float (obviously!). But what I really want to do is something like: there's a 30% chance my app does this: pass else: pass Can you guys help me ...
0
votes
2answers
45 views

Printing array elements at random until all elements have been printed

I'm trying to create a method that takes in 3 int arrays and prints out one element from each array until all the elements of all three arrays have been printed at least once. The first array has 10 ...
1
vote
4answers
52 views

Java modulo operator precedence

I need some help in debugging the following java program. import java.util.Random; public class NextInt { public static void main(String[] args) { for(int i=0; i<20; ++i) ...
2
votes
2answers
37 views

PHP or shell: How to randomize a list without back to back repeats?

I wrote this in Linux BASH shell, but if there's a better solution in PHP that would be fine. I need to produce a random selection from an array of 12 elements. This is what I've been doing so far: ...
0
votes
1answer
47 views

random function not working properly

I am having trouble with an asp page that contains a random function to display a random number of random records. The way I have the code now, as shown below, nothing appears on the page even though ...
-5
votes
3answers
71 views

I need help creating a program that randomizes numbers and variables [closed]

I am trying to get this program to work, and I am failing miserably. I am trying to create a card game that randomizes my variables(they are defined) and numbers. So basically, you draw two random ...
-1
votes
1answer
33 views

Array_Rand always returns same value PHP fetch array

I have this function: function set_spell() { global $connection; $query = "SELECT * FROM Spells"; $result_set = mysqli_query($connection, $query); $spell_id_list = mysqli_fetch_array($result_set); ...
-17
votes
0answers
122 views

Generate random values between two decimals [closed]

How can I generate random values between 2 decimals? For example, I want random values between 2.5 and 4.5.
-2
votes
2answers
702 views

Matlab, matrix containing random numbers within specified range

I am absolutely new to Matlab and am trying to create an m-by-n matrix containing numbers within a specified range (ie. between -1 and 1). Is there an equivalent function to rand(m, n) where I can ...
5
votes
6answers
13k views

Replace item in array with JavaScript

var items = Array(523,3452,334,31,...5346); Each item of this array is some number. How do I replace some number in with array with a new one? For example, we want to replace 3452 with 1010, how ...
2
votes
1answer
69 views

Creating ( not truly ) random array of integers in Java

I want to write a code that generates an array of random integers in Java which should hold 256 integers and where the values of integers are somewhere between 0 - 512(It could be 0 - 256 or 0 - 1024 ...

1 2 3 4 5 142