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

Class CExponential

include/stat.hpp:667–678  ·  view source on GitHub ↗

Exponential distribution. */

Source from the content-addressed store, hash-verified

665
666/* Exponential distribution. */
667class CExponential : public CSample
668{
669public:
670 CExponential(double mean);
671 double sample();
672 int textDescr(char *s, int len);
673 int timeDescr(char *s, int len);
674 double cdfInv(double percentile);
675private:
676 double mean;
677 gsl_rng *rng;
678};
679
680/* Weibull distribution. */
681class CWeibull : public CSample

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected