23 #ifndef GaussianDistribution_h
24 #define GaussianDistribution_h
67 inline double Mean()
const {
87 double A(
const double x);
88 double B(
const double x);
89 double C(
const double x);
90 double D(
const double x);
gaussian distribution class
Definition: GaussianDistribution.h:53
double InverseCumulativeDistribution(const double percent)
Computes and returns the inverse cumulative distribution evaluated at the specified percentage value ...
Definition: GaussianDistribution.cpp:104
~GaussianDistribution()
Definition: GaussianDistribution.h:56
This class is used to accumulate statistics on double arrays.
Definition: Statistics.h:109
double StandardDeviation() const
Returns the standard deviation.
Definition: GaussianDistribution.h:76
double CumulativeDistribution(const double value)
Computes and returns the cumulative distribution up to the specified value on the gaussian distributi...
Definition: GaussianDistribution.cpp:62
double Probability(const double value)
Computes and returns the probability of the specified value on the gaussian distribution.
Definition: GaussianDistribution.cpp:49
GaussianDistribution(const double mean=0.0, const double standardDeviation=1.0)
Constructs a gaussian distribution object.
Definition: GaussianDistribution.cpp:36
double Mean() const
Returns the mean.
Definition: GaussianDistribution.h:67