CODeME
Gauss.h
Go to the documentation of this file.
1 
12 #ifndef BOXMULLER_H_INCLUDED
13 #define BOXMULLER_H_INCLUDED
14 #include <time.h>
15 #include "Random.h"
16 
17 unsigned x;
18 double BoxMuller ();
19 void BoxMuller_Vector (int Dimension , double* Vector);
20 double Random_NormD (double mean,double std_desv);
21 void Random_NormalDVector (int Dimension , double* Mu , double** Covariance , double* Vector);
22 double get_Average (int length,double *data);
23 double get_Variance (int length,double *data);
24 
25 #endif // BOXMULLER_H_INCLUDED
Function prototypes for the pseudorandom numbers generators.