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