Tagged Questions

3
votes
6answers
217 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 …
2
votes
9answers
276 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 …
0
votes
4answers
114 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 thos …
0
votes
2answers
29 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 …
6
votes
10answers
499 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 System.Secu …
4
votes
7answers
202 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 …
2
votes
6answers
374 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 an …
1
vote
4answers
378 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: http://www …
3
votes
9answers
209 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 mu …
2
votes
4answers
335 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 w …
2
votes
3answers
401 views

Randomly generated hexadecimal number in C#

How can I generate a random hexadecimal number with a length of my choice using C#?
3
votes
11answers
598 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(); …
2
votes
2answers
258 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 dum …
5
votes
6answers
700 views

How to generate “random” but also “unique” numbers ?

How are random numbers generated.? How do languages such as java etc generate random numbers, especially how it is done for GUIDs.? i found that algorithms like Pseudorandomnumber …
0
votes
3answers
133 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 …

1 2 next
15 30 50 per page