0
votes
5answers
451 views
Create many constrained, random permutation of a list
I need to make a random list of permutations. The elements can be anything but assume that they are the integers 0 through x-1. I want to make y lists, each containing z elements. The rules are …
4
votes
11answers
337 views
Generate two numbers that are NOT equal in PHP
Hello everyone!
I need to generate two numbers that are NOT equal in PHP.
I know that I use $random1 = (rand()%9); to generate random a number between 0-9. I need to add something to this I guess.
…
0
votes
0answers
9 views
ironpython random seeds simpy
hi
I am trying to use simpy using IronPython in Visual Studio.
I'm having problems with my imports:
import sys
sys.path.append("C:\\Python26\\Lib")
sys.path.append("C:\\SimPy-2.0.1")
from …
0
votes
13answers
307 views
Better random algorithm?
I'm making a game in c++ and it involves filling tiles with random booleans (either yes or no) whether it is yes or no is decided by rand() % 1. It doesnt feel very random. I'm using srand with ctime …
2
votes
5answers
39 views
Adding Randomly choosen class to html tag using jQuery
Hello Gurus!
Whet I need to do is in my menu I would like to add one of the classes (listed below) with completely random order every time when function starts (page load)
This is my HTML
<div …
1
vote
3answers
344 views
Can one setup dev/random when using a VM(virtual machine)?
Does anyone know if it's possible to setup dev/random when running the OS within a VM (VMWare in this case)?
1
vote
5answers
90 views
MATLAB generate random numbers
Hi I am trying to generate random numbers in MATLAB with a random MEAN value.
For example, if I use
e = mean(rand(1000,1))
the answer for e will always be close to 0.5.
What I want is for the …
1
vote
4answers
165 views
boost::random generate the same number every time
main .cpp
#include "stdafx.h"
#include "random_generator.h"
int
main ( int argc, char *argv[] )
{
cout.setf(ios::fixed);
base_generator_type base_generator;
…
0
votes
3answers
72 views
How to generate random values that don’t keep giving me the same value in ‘runs’ of numbers?
Hi I coded this OneAtRandom() extension method:
public static class GenericIListExtensions
{
public static T OneAtRandom<T>(this IList<T> list)
{
…
0
votes
1answer
21 views
Trying to generate several digit intervals in one number (LUA)
Basically I have to use a random function that can return a number between 0 and 2^16-1.
I am trying to make use of this and generate let's say, 6 intervals between 1 and 6 (thinking of dice poker). …
10
votes
8answers
190 views
Generating sorted random ints without the sort?
Just been looking at a code golf question about generating a sorted list of 100 random integers. What popped into my head, however, was the idea that you could generate instead a list of positive …
0
votes
3answers
60 views
PHP, MySQL - would results-array shuffle be quicker than “select… order by rand()”?
I've been reading a lot about the disadvantages of using "order by rand" so I don't need update on that.
I was thinking, since I only need a limited amount of rows retrieved from the db to be …
0
votes
4answers
89 views
Python random and int to string question
Hi,
I am using this line of code to generate a random list of integers:
random.sample(range(2000), 100)
With this code i know i wont have double value's with my result. Is their maybe a faster way …
0
votes
2answers
182 views
Grab random frames from video & make a gif image - Java
Hi!
I want to know if it's possible to grab random frames from a video and then "stick" these frames together to make a gif image?
I intend to achieve the above said idea by programming in Java.
…
1
vote
5answers
176 views
How to call a C function from random places inside another function ?
Can anyone tell me how to insert a function call (say Yield() ) at random places inside a C function , so that each time the code is run , Yield() gets called from different parts of the code ?
I am …
