Computes the value of the Cumulative Density Function (CDF) at the given point. The CDF returns a value in the range [0, 1], indicating what portion of values occur at or below that point. @param x the value to get the CDF of @return the CDF(x)
(double x)
| 41 | * @return the CDF(x) |
| 42 | */ |
| 43 | abstract public double cdf(double x); |
| 44 | |
| 45 | /** |
| 46 | * Computes the inverse Cumulative Density Function (CDF<sup>-1</sup>) at |