Java org.apache.commons.math3.distribution BetaDistribution fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.distribution BetaDistribution fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.distribution BetaDistribution.

The text is from its open source code.

Field

doubleDEFAULT_INVERSE_ABSOLUTE_ACCURACY
Default inverse cumulative probability accuracy.

Constructor

Method

doublecumulativeProbability(double x)
doubledensity(double x)
doublegetAlpha()
Access the first shape parameter, alpha .
doublegetBeta()
Access the second shape parameter, beta .
doubleinverseCumulativeProbability(final double p)
The default implementation returns
  • #getSupportLowerBound() for p = 0 ,
  • #getSupportUpperBound() for p = 1 .
doublesample()
The default implementation uses the inversion method.
double[]sample(int sampleSize)
The default implementation generates the sample by calling #sample() in a loop.