Пример #1
0
 /**
  * Returns the percent-point function, the inverse of the cdf
  * 
  * @param float $x The test value
  * @return float The value that gives a cdf of $x
  */
 public function ppf($x)
 {
     return $this->calculator->getPpf($x, $this->lambda);
 }