Package umontreal.iro.lecuyer.probdist

Examples of umontreal.iro.lecuyer.probdist.StudentDist.cdf()


     * which is to use the bounds in Chick,Branke,Schmidt together with
     * interval arithmetic.
     */
    double z = -StrictMath.abs(s);
    StudentDist dist = new StudentDist((int) dof);
    double u = dist.cdf(z);
    if (s <= 0) // s=z
      return StrictMath.log(u);
    else
      // s=-z
      return StrictMath.log1p(-u);
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.