Package com.opengamma.analytics.math.function.special

Examples of com.opengamma.analytics.math.function.special.InverseIncompleteBetaFunction


  public StudentTDistribution(final double degFreedom, final RandomEngine engine) {
    Validate.isTrue(degFreedom > 0, "degrees of freedom");
    Validate.notNull(engine);
    _degFreedom = degFreedom;
    _dist = new StudentT(degFreedom, engine);
    _beta = new InverseIncompleteBetaFunction(degFreedom / 2., 0.5);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.analytics.math.function.special.InverseIncompleteBetaFunction

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.