Re: Bell-curve distribution wanted
- From: "user923005" <dcorbit@xxxxxxxxx>
- Date: 28 Feb 2007 13:22:32 -0800
This is from the C-FAQ:
13.20: How can I generate random numbers with a normal or Gaussian
distribution?
A: Here is one method, recommended by Knuth and due originally to
Marsaglia:
#include <stdlib.h>
#include <math.h>
double gaussrand()
{
static double V1, V2, S;
static int phase = 0;
double X;
if(phase == 0) {
do {
double U1 = (double)rand() / RAND_MAX;
double U2 = (double)rand() / RAND_MAX;
V1 = 2 * U1 - 1;
V2 = 2 * U2 - 1;
S = V1 * V1 + V2 * V2;
} while(S >= 1 || S == 0);
X = V1 * sqrt(-2 * log(S) / S);
} else
X = V2 * sqrt(-2 * log(S) / S);
phase = 1 - phase;
return X;
}
See the extended versions of this list (see question 20.40) for
other ideas.
References: Knuth Sec. 3.4.1 p. 117; Marsaglia and Bray,
"A Convenient Method for Generating Normal Variables";
Press et al., _Numerical Recipes in C_ Sec. 7.2 pp. 288-290.
.
- References:
- Bell-curve distribution wanted
- From: Michael Stemper
- Bell-curve distribution wanted
- Prev by Date: Re: Review of Mueckenheims book.
- Next by Date: arrangement of double sums
- Previous by thread: Re: Bell-curve distribution wanted
- Next by thread: Active Mathematica
- Index(es):
Relevant Pages
|
|