Examples of ChiSquaredDistribution

@version $Revision: 920852 $ $Date: 2010-03-09 13:53:44 +0100 (mar. 09 mars 2010) $
  • org.apache.commons.math3.distribution.ChiSquaredDistribution
    pedia.org/wiki/Chi-squared_distribution">Chi-squared distribution (Wikipedia) @see Chi-squared Distribution (MathWorld)

  • Examples of org.apache.commons.math3.distribution.ChiSquaredDistribution

            )
          );
      }

      public static double chi(final double p, final int dof) {
        return new ChiSquaredDistribution(dof).inverseCumulativeProbability(p);
      }
    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.