Package com.cloudera.science.mgps

Examples of com.cloudera.science.mgps.QFunction


    this.target = target;
    this.alpha1 = alpha1;
    this.beta1 = beta1;
    this.alpha2 = alpha2;
    this.beta2 = beta2;
    this.q = new QFunction(new NFunction(alpha1, beta1),
        new NFunction(alpha2, beta2), p);
  }
View Full Code Here


  }
 
  public EBGM(double alpha1, double beta1, double alpha2, double beta2, double p) {
    this.delta1 = new DeltaFunction(alpha1, beta1);
    this.delta2 = new DeltaFunction(alpha2, beta2);
    this.q = new QFunction(new NFunction(alpha1, beta1),
        new NFunction(alpha2, beta2), p);
  }
View Full Code Here

TOP

Related Classes of com.cloudera.science.mgps.QFunction

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.