Package umontreal.iro.lecuyer.probdist

Examples of umontreal.iro.lecuyer.probdist.InverseDistFromDensity


    */
   public InverseFromDensityGen (RandomStream stream,
                                 ContinuousDistribution dis,
                                 double xc, double eps, int order)  {
      super (stream, null);
      dist = new InverseDistFromDensity (dis, xc, eps, order);
   }
View Full Code Here


    */
   public InverseFromDensityGen (RandomStream stream, MathFunction dens,
                                 double xc, double eps, int order,
                                 double xleft, double xright)  {
      super (stream, null);
      dist = new InverseDistFromDensity (dens, xc, eps, order, xleft, xright);
   }
View Full Code Here

TOP

Related Classes of umontreal.iro.lecuyer.probdist.InverseDistFromDensity

Copyright © 2018 www.massapicom. 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.