Package org.apache.commons.math.distribution

Examples of org.apache.commons.math.distribution.NormalDistributionImpl.inverseCumulativeProbability()


  }
 
  public static double normalInverseCDF(double pValue, double mean, double sigma) throws MathException
  {
    NormalDistributionImpl normDist = new NormalDistributionImpl(mean, sigma);
    double ret = normDist.inverseCumulativeProbability(pValue);
    return ret;
  }
 
  public static double normalPDF(double x, double mean, double sigma) throws MathException
  {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.