Tagged Questions

2
votes
5answers
235 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
136 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? …
4
votes
7answers
258 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 …
3
votes
6answers
303 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
583 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
2answers
47 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 …
0
votes
4answers
126 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 …
2
votes
6answers
478 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
492 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: …
2
votes
4answers
424 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 …
3
votes
9answers
219 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 …
2
votes
3answers
504 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
294 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 …
0
votes
3answers
163 views

Relationship between MSVC++ rand() and C# System.Random

How can I make it so the same sequence of random numbers come out of an MSVC++ program and a C# .NET program? Is it possible? Is there any relationship between MSVC++ rand() and System.Random? …

1 2 next
15 30 50 per page