Lognormal distribution. */
| 654 | |
| 655 | /* Lognormal distribution. */ |
| 656 | class CLogNormal : public CNormal |
| 657 | { |
| 658 | public: |
| 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. */ |
| 667 | class CExponential : public CSample |
nothing calls this directly
no outgoing calls
no test coverage detected