nns.c  1.0.1
Nanowire Network simulator
distributions.h
Go to the documentation of this file.
1 
7 #ifndef DISTRIBUTIONS_H
8 #define DISTRIBUTIONS_H
9 
10 #include <gsl/gsl_rng.h>
11 
20 double normal_random(gsl_rng* rng, double µ, double σ);
21 
22 #endif /* DISTRIBUTIONS_H */
double normal_random(gsl_rng *rng, double µ, double σ)
Return a double value from a normal (a.k.a. gaussian) distribution with the specified mu and sigma.
Definition: distributions.c:5