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

learn more… | top users | synonyms (9)

0
votes
1answer
13 views

randomrange in assembly with Irvine

I am working on x86 assembly language. I want to get two parameters that one is column and other one is row, using randomrange within the interval [0,5]. Here I tried to adjust the interval by ...
0
votes
1answer
57 views

Random number generation based on different factors

I want to write a random number generation algorithm. But I do not want the numbers to be completely random. I want them to be dependent on a number of different factors. By factors, I mean variables ...
-4
votes
1answer
36 views

Selecting random String from .plist? [closed]

I am currently new to developing and have run into a problem. I would like to read string from a .plist and when a button is pressed it picks a random string and presents it in a label? I have a ...
2
votes
1answer
21 views

How to remove a string from an arraylist randomly

So what this program is supposed to do is the user inputs a name into a text box and then presses a button to add it into an array which is displayed onto a text area. The thing is that I can't figure ...
0
votes
2answers
36 views

MYSQL select random of each of the categories

I want to select random 5 records from each categories in the same table. table name: t_shop column name: shop_id, shop_categoryID For example: shop_id | shop_categoryID 1 | 1 2 | 1 5 | 1 7 | 1 9 ...
-1
votes
2answers
26 views

Selecting A Random Item From An Array iOS

I'm trying to use the didFinishPickingMediaWithInfo when the user have picked a photo. When they have picked the photo, I want to generate an item from an array to a UILabel, just like this: ...
-1
votes
2answers
61 views

Same and Different Random Numbers generation [closed]

I am creating this game which involves generating random numbers. I have to add an option (at the end of the game) to restart the same game or create a new game. How can I generate same and different ...
0
votes
4answers
80 views

Is there a better function that rand()?

I have a program, in C, which creates an array of 1000 integers using a random number from 0-999 and then performs some sort of algorithm on that array. In order to test the algorithm's running time, ...
2
votes
4answers
56 views

Improving perfomance for randomly created panels

So what I'm trying to do is create like a random image from panels of different colors. The user can choose how many panels (i.e. pixels) he wants to have and the number of different colors and then ...
4
votes
2answers
46 views

Drawing an imperfect circle

Programatically drawing a perfect circle is not all that difficult. It's based on some very simple math, afterall. You input two parameters (a center and a radius) and output the circle. But if you ...
1
vote
5answers
27 views

Php MySQL Nonrepeating Random Data Display

Let's say I've got a mySQL database: two columns: ID and names, with 100 rows. What I'd like to do is pick out say 10 names - with no repeats - and display them in random order. Using this code, I ...
0
votes
1answer
14 views

Random sound onclick button android assets

I want to play random sounds from assets/ folder in my project. What's wrong with that code? Help me please Here's my code: MediaPlayer player; AssetFileDescriptor descriptor; private String[] ...
0
votes
2answers
44 views

Algorithm Needed: Predictable Randomized Tiles in Javascript [duplicate]

Here is the function definition: /** * @param {number} x The x-coordinate (can be positive or negative) * @param {number} y The y-coordinate (can be positive or negative) * @param {number} ...
-1
votes
3answers
53 views

How “good” is this method for generating random numbers?

I was searching on google for RNGCryptoServiceProvider with examples on how to limit the range between Max and Min, and still get an even distribution. Before I used modulo operator, but sometimes it ...
-1
votes
1answer
92 views

Sort list in random number order

I have a list that I want to sort into a random order each time. There are a few ways that I've come across: list = list.OrderBy(x => Guid.NewGuid()).ToList(); var rnd = new Random(); myList = ...
0
votes
5answers
43 views

How to make an image random but not repeat by modifying this code

The below code is the only code that worked on my site (built w an online template) alll other javascript crashed. (I am very novice at web programming) Is there a simple change I can make to this ...
1
vote
0answers
77 views

How to generate a random n*y matrix with columns of unit length?

Is there any specific form or algorithm of generating a random matrix in which all it's columns norm is equal to one? I have an implementation, which I think should be working, of the algorithm, ...
1
vote
2answers
34 views

Using pseudo-random number engines in deterministic, multi-threaded applications?

I'm trying to use the C++11 random number generators to shuffle decks of cards. I've discovered (by looking in the implementation) that the random number sequence produced by two engines are the same ...
0
votes
2answers
54 views

Compare, extract and remove from a string array PHP

I am an PHP noob that has been working for quite a while with the smallest of tasks. Im trying to create a while loop that is alive until it finds a match, the strings that should match is two random ...
1
vote
2answers
51 views

Attempting to create chance calculator

I am relatively new to Java and wanted to try and make a code that would randomly generate 2 numbers a set amount of times, and it would track how many times the 2 numbers are the same. Then after X ...
0
votes
4answers
56 views

.net Switch statement and random number: Not all code paths return a value. Must I include a default?

Heres a tiny function to randomly return either +1 or -1 public static int PlusOrMinus() { int chance = MyRandom.Random.Next(0, 2); switch (chance) { case 0: return ...
0
votes
2answers
42 views

Java's Random.nextInt() produces numbers between what and what?

The Oracle java doc says that All 232 possible int values are produced with (approximately) equal probability. Does this mean that the values generated range from -(232) to 232, or would that ...
0
votes
2answers
67 views

Objective C Random Number [duplicate]

I have one piece of code that is giving me some trouble and is confusing. Here is the piece of code... int r = rand() % 100; printf("Random number: %u", r); Why does it print 7 every time? ...
0
votes
2answers
26 views

Why can't I shuffle an array properly with shuffle in PHP?

Here is a function that reproduces my issue. I have an array. Inside the array is array( 0 => 'l', 1 => 'j', 2 => 'b'). Notice how b is always at the end no matter what I do. private ...
1
vote
1answer
17 views

How to reset Boost::variate_generator distribution?

I am trying to write a function that takes in a min and a max and returns a random double between them. I was trying to use Boost::variate_generator to get a random number between two doubles, but the ...
0
votes
3answers
62 views

Generating random index for array

I'm a beginner at android and am working on my first app. I chose a tutorial using the google Places api and worked through it. Afterwards I decided I wanted to add a button that would choose a ...
0
votes
2answers
43 views

JavaScript get h1 elements in HTML document and update unique IDs

I have a legacy html document containing h1 elements which don't have ids. What I would like to achieve is to be able, using JavaScript, to get all h1(s) and then add to each a unique ID. I have ...
0
votes
4answers
32 views

Best way to load content with a probability

I'm doing some A/B testing on a site of mine, and for various reasons I need a certain piece of content to appear for 1% of the page loads. In other words if the page is loaded 100 times, I would ...
1
vote
2answers
30 views

Visual Basic random number with seed but in reverse

I wish to generate a random number between 1 and 26 with a seed but then wish to get the same numbers back when I provide the function with the same seed. The Rnd and Randomize functions aren't ...
0
votes
1answer
50 views

generate random binary data such 23ABFF

I want to generate binary data the similar to OData binary and I not sure how. the type is defined as Represent fixed- or variable- length binary data binary'[A-Fa-f0-9][A-Fa-f0-9]*' OR X ...
0
votes
0answers
5 views

Generate Random double in the range[0,1) with a seed in the range [0,2^16}

I have to generate a random double in the range[0,1) providing with a seed in the range [0-2^16] in c or c++ The generated id's should have a uniform distribution. Can you suggest some methods or ...
0
votes
4answers
46 views

Avoiding Repeated seed generation using srand()

I have a typical situation where I need to generate a batch of random numbers. I have used a loop which generates 100 random numbers on each pass: for(int i=0; i<npasses; i++) { ...
0
votes
3answers
69 views

Random number distributions c++11

I have a program that uses several distribution objects: Like: std::normal_distribution std::exponential_distribution etc.. Should I use a random number engine for each one, or should make all of ...
-1
votes
1answer
55 views

Unpredictable counting of number

Say I have a 32-bit integer. Initially I seed this black box with something random/secret. Each time I call, advance, I get the next number in the sequence but the next number in the sequence isn't ...
-2
votes
3answers
36 views

Python:get a couple of values from two different list

Does the Python has a built-in method I can get a couple of values from two differnet list in a random way? ex: listOne = ['Blue', 'Red', 'Green'] listTwo = [1, 2, 3] # I want to get the result: # ...
9
votes
1answer
144 views

Is there a way to generate publicly observable random numbers?

I have a website that gives users different outcomes depending on a virtual dice roll. I want them to trust that my random numbers are honest, so instead of me determining it in my own code (which to ...
0
votes
1answer
17 views

Generating uniformly distributed random numbers in distributed environment

I have to generate a "unique Random Number" in a Wireless sensor network which works on the principle of Gossiping. The requirements are: Each node has to generate a unique Random Number, without ...
2
votes
1answer
32 views

SHA computes hashes with random length

Recently, I noticed that SHA algorithm computes hashes with random length. HashAlgorithm provider; provider = HashAlgorithm.Create("System.Security.Cryptography.SHA256"); while(!stackoverflow) { ...
0
votes
0answers
45 views

Creating an Excel macro to generate random numbers based on a cell

I'm having a bit of trouble with Excel syntax for this setup I'm trying to do. What my goal is, is to input a number of instances into a cell N8, then display the instances in rows below. These ...
2
votes
6answers
158 views

C++ need assistance with if != to a random number

I am working on a project and I am stuck. I have two variables that generate random numbers. I want to do a check that checks to make sure the variables are not the same number, and if they are, then ...
-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 ...
-3
votes
2answers
58 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 ...
0
votes
1answer
28 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) ...
0
votes
1answer
73 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 ...
-1
votes
1answer
44 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 ...
-3
votes
3answers
68 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 ...
0
votes
2answers
75 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 ...
-5
votes
6answers
70 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
39 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
0answers
16 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 ...

1 2 3 4 5 141