Example #1
0
 // Compute z such that Phi(z) = y via bisection search
 public static double PhiInverse(double y) throws MathException {
   return nd.inverseCumulativeProbability(y);
   // return PhiInverse(y, .00000001, -8, 8);
 }