Exemple #1
0
 /**
  * Returns the cumulative distribution function, the probability of getting the test value or something below it
  * 
  * @param float $x The test value
  * @return float The probability
  */
 public function cdf($x)
 {
     return $this->calculator->getCdf($x, $this->lambda, $this->k);
 }