예제 #1
0
 /// <summary>
 ///   Gets the complementary cumulative distribution
 ///   function for the χ² evaluated at point <c>x</c>.
 /// </summary>
 public double SurvivalFunction(double x)
 {
     return(Special.ChiSqc(degreesOfFreedom, x));
 }