Exemple #1
0
 /**
  * Returns the probability distribution function
  * 
  * @param float $x The test value
  * @return float The probability
  */
 public function pdf($x)
 {
     return $this->calculator->getPdf($x, $this->lambda, $this->k);
 }