25package umontreal.ssj.probdist;
47 public double cdf(
double x);
55 public double barF(
double x);
This interface should be implemented by all classes supporting discrete and continuous distributions.
double inverseF(double u)
Returns the inverse distribution function , defined in ( inverseF ).
double cdf(double x)
Returns the distribution function .
double getVariance()
Returns the variance of the distribution function.
double getStandardDeviation()
Returns the standard deviation of the distribution function.
double barF(double x)
Returns .
double getMean()
Returns the mean of the distribution function.
double[] getParams()
Returns the parameters of the distribution function in the same order as in the constructors.