0
votes
4answers
146 views
How to generate random variable names in C++ using macros?
I'm creating a macro in C++ that declares a variable and assigns some value to it. Depending on how the macro is used, the second occurrence of the macro can override the value of …
0
votes
5answers
76 views
Random list with rules
I'm trying to create a list of tasks that I've read from some text files and put them into lists. I want to create a master list of what I'm going to do through the day however I' …
0
votes
2answers
40 views
Random image display
I have a list of images that need to be displayed. However theres only space for 5. I need to display 5 of these at a time randomly.
Whats the best way to do this?
11
votes
3answers
140 views
Random Number Between 2 Double Numbers
It is possible to generate a random number between 2 doubles?
Example:
public double GetRandomeNumber(double minimum, double maximum)
{
return Random.NextDouble(minimum, maxi …
1
vote
3answers
97 views
how to randomly choose 5 numbers out of 50 numbers in PHP?
Or is there a ready function there?
1
vote
3answers
62 views
Object Attribute in Random List Not Accessible in Python
Hello.
I'm working on my first object oriented bit of python and I have the following:
#!/usr/bin/python
import random
class triangle:
# Angle A To Angle C Connects Side F
# …
6
votes
5answers
181 views
Random Python dictionary key, weighted by values
hello,
I have a dictionary where each key had a list of variable length, eg:
d = {
'a': [1, 3, 2],
'b': [6],
'c': [0, 0]
}
Is there a clean way to get a random dictionary ke …
5
votes
8answers
187 views
Linux/perl mmap performance
I'm trying to optimize handling of large datasets using mmap. A dataset is in the gigabyte range. The idea was to mmap the whole file into memory, allowing multiple processes to wo …
1
vote
2answers
71 views
Retain a random number across different functions in Cocoa?
I know how to do a global variable, but whenever I try to define a global variable with a random number function, xcode says "initializer element is not constant." The compiler do …
1
vote
3answers
128 views
How do I select a random element from an array in Python?
The first examples that I googled didn't work. This should be trivial, right?
1
vote
5answers
103 views
Multiple random number generator states in c/Unix
I'm using srandom() and random() to generate random numbers in c on a Unix system. I would like to have multiple RNGs. Each one, given the same seed, should output the same seque …
4
votes
14answers
373 views
What is a good random number generator for a game?
What is a good random number generator to use for a game in C++?
My considerations are:
Lots of random numbers are needed, so speed is good.
Players will always complain about r …
1
vote
7answers
187 views
How do I speed this up?
The following code makes a list of names and 'numbers' and gives each person a random age between 15 and 90.
#!/bin/sh
file=$1
n=$2
# if number is zero exit
if [ "$n" -eq "0" ]
…
2
votes
1answer
37 views
Checking if a graph is random using the Erdős–Rényi model?
Given some graph, I would like to determine how likely it is that it was generated randomly. I was told that a comparison to the Erdős–Rényi model was a good way to get this inform …
0
votes
9answers
141 views
PHP: Best random numbers
Hello!
I heard that PHP's rand() function doesn't give good random numbers. So I started to use mt_rand() which is said to give better results. But how good are these results? Are …
