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

Class CLogNormal

include/stat.hpp:656–664  ·  view source on GitHub ↗

Lognormal distribution. */

Source from the content-addressed store, hash-verified

654
655/* Lognormal distribution. */
656class CLogNormal : public CNormal
657{
658public:
659 CLogNormal(double mean, double stdev) : CNormal(mean, stdev) {};
660 double sample();
661 int textDescr(char *s, int len);
662 int timeDescr(char *s, int len);
663 double cdfInv(double percentile);
664};
665
666/* Exponential distribution. */
667class CExponential : public CSample

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected