Bpp/Statistics Distribution | C++ |
|  |
This module provides statistical distributions. Thanks to Soni for helping me out with the formulas. This section allows you to access the C++ source files of the module. This module is part of Bpp/Statistics . The files listed below are included in the interface part of the module. So any module dependent of this module is also dependent of the files listed here. The namespaces listed below are integrated in this module. That means any element declared in one of those namespaces can now be directly used by or from this module. Here are listed the classes provided by the module. To use one of them, you have to specify the namespace of the module. class clDistribution
Represents a statistical distribution. It is an abstract class. | clExponentialDistribution | |
class clExponentialDistribution : public clDistribution
Represents an exponential distribution with parameter lambda. Its mean value is 1/lambda and its variance is 1/(lambda*lambda). class clNormalDistribution : public clDistribution
Represents a normal distribution. Its parameters are its mean and its variance. class clUniformDistribution : public clDistribution
Represents a uniform distribution with parameters a and b. Its mean value is (a+b)/2 and its variance is (b-a)(b-a)/12. tyReal minimum() Parameter a, minimum value generated by the distribution. Reading and writing access.
tyReal maximum() Parameter b, maximum value generated by the distribution. Reading and writing access.
| | Copyright (c) 1999-2016 - Bruno Bachelet - bruno@nawouak.net - http://www.nawouak.net | Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation. See this license for more details (http://www.gnu.org). |
|
|