MCPcopy Create free account
hub / github.com/SIPp/sipp / CNormal

Method CNormal

src/stat.cpp:1626–1631  ·  view source on GitHub ↗

Normal distribution. */

Source from the content-addressed store, hash-verified

1624
1625/* Normal distribution. */
1626CNormal::CNormal(double mean, double stdev)
1627{
1628 this->mean = mean;
1629 this->stdev = stdev;
1630 rng = gsl_init();
1631}
1632
1633double CNormal::sample()
1634{

Callers

nothing calls this directly

Calls 1

gsl_initFunction · 0.85

Tested by

no test coverage detected