Package cern.jet.random

Examples of cern.jet.random.Gamma


    ////                         protected methods                 ////

    /** Method that is called after _randomNumberGenerator is changed.
     */
    protected void _createdNewRandomNumberGenerator() {
        _generator = new Gamma(1.0, 1.0, _randomNumberGenerator);
    }
View Full Code Here


   */
  public GammaDistribution(final double k, final double theta, final RandomEngine engine) {
    Validate.isTrue(k > 0, "k must be > 0");
    Validate.isTrue(theta > 0, "theta must be > 0");
    Validate.notNull(engine);
    _gamma = new Gamma(k, 1. / theta, engine);
    _k = k;
    _theta = theta;
  }
View Full Code Here

TOP

Related Classes of cern.jet.random.Gamma

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.