2
votes
5answers
240 views
Fast Random Generator
How can I make a fast RNG (Random Number Generator) in C# that support filling an array of bytes with a maxValue (and/or a minValue)?
I have found this http://www.codeproject.com/KB/cs/fastrandom.aspx …
2
votes
3answers
140 views
how do i seed a random class to avoid getting duplicate random values
i have the following code inside a static method in a static class
Random r = new Random();
int randomNumber = r.Next(1,100);
i have this inside a loop and i keep getting the same randomNumber?
…
3
votes
6answers
307 views
C# Normal Random Number
I would like to create a function that accepts Double mean, Double deviation and returns a random number with a normal distribution.
Example: if I pass in 5.00 as the mean and 2.00 as the …
2
votes
9answers
338 views
C# Random Number
I am working on a project in which I need to generate 8 random numbers. I am having an issue with the random number part being very time consuming for some reason. What I mean by 8 random numbers is I …
6
votes
10answers
588 views
Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator?
Why would anybody use the "standard" random number generator from System.Random at all instead of always using the cryptographically secure random number generator from …
0
votes
4answers
127 views
Obscure VBMath random numbers generator behavior.
Hi,
I want to repeat a random number sequence generated by a legacy software using the VBMath.Rnd and VBMath.Randomize functions in VB .NET
Reading on the documentation for those functions on MSDN …
4
votes
7answers
265 views
Intel Math Kernel on windows, calling from c# for random number generation
Has anyone used the Intel Math Kernel library http://software.intel.com/en-us/intel-mkl/
I am thinking of using this for Random Number generation from a C# application as we need extreme performance …
0
votes
2answers
48 views
Properly Seeding Random numbers in Class Library called from ASP.Net Web Page
I'm experiencing a problem with my random number generator in a class library returning the same value repeatedly. It returns the same value b/c it is repeatedly initialized with the default …
2
votes
6answers
489 views
How to generate a random named text file in C#?
I have to make a loop to generate a 5 randomly-picked-letter string, and then create a text file under that name, lets say in C:// , how will I do that? Both the generating name and creating a file in …
1
vote
4answers
499 views
c# Mersenne Twister random integer generator implementation (SFMT) monte carlo simulation
So far I've been using the C# Mersenne Twister found here:
http://www.centerspace.net/resources.php
I just discovered SFMT which is supposed to be twice as fast here:
…
3
votes
9answers
220 views
Are these random numbers ‘safe’
I'm not asking if these are truly random. I just wanted to know if two users hit the a page at the same time can they get the same random number? I'm thinking if i run this on a multicore server will …
4
votes
11answers
679 views
Why does it appear that my random number generator isn’t random in C#?
I'm working in Microsoft Visual C# 2008 Express.
I found this snippet of code:
public static int RandomNumber(int min, int max)
{
Random random = new Random();
return …
2
votes
4answers
430 views
c# Monte Carlo Incremental Risk Calculation optimisation, random numbers, parallel execution
My current task is to optimise a Monte Carlo Simulation that calculates Capital Adequacy figures by region for a set of Obligors.
It is running about 10 x too slow for where it will need to be in …
2
votes
3answers
513 views
Randomly generated hexadecimal number in C#
How can I generate a random hexadecimal number with a length of my choice using C#?
2
votes
2answers
296 views
What is the easiest way to generate quasi random numbers in C#?
All I want is a pragmatic random number generator in C# so I can say e.g.
int dummyAge = MathHelpers.GetRandomNumber(20,70);
and have it seem quasi random, e.g. to generate dummy data.
Most stack …
