|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.commons.math.distribution.AbstractDistribution
org.apache.commons.math.distribution.AbstractIntegerDistribution
org.apache.commons.math.distribution.HypergeometricDistributionImpl
public class HypergeometricDistributionImpl
The default implementation of HypergeometricDistribution.
| Field Summary | |
|---|---|
private int |
numberOfSuccesses
The number of successes in the population. |
private int |
populationSize
The population size. |
private int |
sampleSize
The sample size. |
private static long |
serialVersionUID
Serializable version identifier |
| Constructor Summary | |
|---|---|
HypergeometricDistributionImpl(int populationSize,
int numberOfSuccesses,
int sampleSize)
Construct a new hypergeometric distribution with the given the population size, the number of successes in the population, and the sample size. |
|
| Method Summary | |
|---|---|
double |
cumulativeProbability(int x)
For this distribution, X, this method returns P(X ≤ x). |
private int[] |
getDomain(int n,
int m,
int k)
Return the domain for the given hypergeometric distribution parameters. |
protected int |
getDomainLowerBound(double p)
Access the domain value lower bound, based on p, used to
bracket a PDF root. |
protected int |
getDomainUpperBound(double p)
Access the domain value upper bound, based on p, used to
bracket a PDF root. |
private int |
getLowerDomain(int n,
int m,
int k)
Return the lowest domain value for the given hypergeometric distribution parameters. |
int |
getNumberOfSuccesses()
Access the number of successes. |
int |
getPopulationSize()
Access the population size. |
int |
getSampleSize()
Access the sample size. |
private int |
getUpperDomain(int m,
int k)
Return the highest domain value for the given hypergeometric distribution parameters. |
private double |
innerCumulativeProbability(int x0,
int x1,
int dx,
int n,
int m,
int k)
For this distribution, X, this method returns P(x0 ≤ X ≤ x1). |
double |
probability(int x)
For this distribution, X, this method returns P(X = x). |
private double |
probability(int n,
int m,
int k,
int x)
For the distribution, X, defined by the given hypergeometric distribution parameters, this method returns P(X = x). |
void |
setNumberOfSuccesses(int num)
Deprecated. as of 2.1 (class will become immutable in 3.0) |
private void |
setNumberOfSuccessesInternal(int num)
Modify the number of successes. |
void |
setPopulationSize(int size)
Deprecated. as of 2.1 (class will become immutable in 3.0) |
private void |
setPopulationSizeInternal(int size)
Modify the population size. |
void |
setSampleSize(int size)
Deprecated. as of 2.1 (class will become immutable in 3.0) |
private void |
setSampleSizeInternal(int size)
Modify the sample size. |
double |
upperCumulativeProbability(int x)
For this distribution, X, this method returns P(X ≥ x). |
| Methods inherited from class org.apache.commons.math.distribution.AbstractIntegerDistribution |
|---|
cumulativeProbability, cumulativeProbability, cumulativeProbability, inverseCumulativeProbability, probability |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.apache.commons.math.distribution.IntegerDistribution |
|---|
cumulativeProbability, inverseCumulativeProbability |
| Methods inherited from interface org.apache.commons.math.distribution.DiscreteDistribution |
|---|
probability |
| Methods inherited from interface org.apache.commons.math.distribution.Distribution |
|---|
cumulativeProbability, cumulativeProbability |
| Field Detail |
|---|
private static final long serialVersionUID
private int numberOfSuccesses
private int populationSize
private int sampleSize
| Constructor Detail |
|---|
public HypergeometricDistributionImpl(int populationSize,
int numberOfSuccesses,
int sampleSize)
populationSize - the population size.numberOfSuccesses - number of successes in the population.sampleSize - the sample size.| Method Detail |
|---|
public double cumulativeProbability(int x)
cumulativeProbability in interface IntegerDistributioncumulativeProbability in class AbstractIntegerDistributionx - the value at which the PDF is evaluated.
private int[] getDomain(int n,
int m,
int k)
n - the population size.m - number of successes in the population.k - the sample size.
protected int getDomainLowerBound(double p)
p, used to
bracket a PDF root.
getDomainLowerBound in class AbstractIntegerDistributionp - the desired probability for the critical value
pprotected int getDomainUpperBound(double p)
p, used to
bracket a PDF root.
getDomainUpperBound in class AbstractIntegerDistributionp - the desired probability for the critical value
p
private int getLowerDomain(int n,
int m,
int k)
n - the population size.m - number of successes in the population.k - the sample size.
public int getNumberOfSuccesses()
getNumberOfSuccesses in interface HypergeometricDistributionpublic int getPopulationSize()
getPopulationSize in interface HypergeometricDistributionpublic int getSampleSize()
getSampleSize in interface HypergeometricDistribution
private int getUpperDomain(int m,
int k)
m - number of successes in the population.k - the sample size.
public double probability(int x)
probability in interface IntegerDistributionx - the value at which the PMF is evaluated.
private double probability(int n,
int m,
int k,
int x)
n - the population size.m - number of successes in the population.k - the sample size.x - the value at which the PMF is evaluated.
@Deprecated public void setNumberOfSuccesses(int num)
setNumberOfSuccesses in interface HypergeometricDistributionnum - the new number of successes.
IllegalArgumentException - if num is negative.private void setNumberOfSuccessesInternal(int num)
num - the new number of successes.
IllegalArgumentException - if num is negative.@Deprecated public void setPopulationSize(int size)
setPopulationSize in interface HypergeometricDistributionsize - the new population size.
IllegalArgumentException - if size is not positive.private void setPopulationSizeInternal(int size)
size - the new population size.
IllegalArgumentException - if size is not positive.@Deprecated public void setSampleSize(int size)
setSampleSize in interface HypergeometricDistributionsize - the new sample size.
IllegalArgumentException - if size is negative.private void setSampleSizeInternal(int size)
size - the new sample size.
IllegalArgumentException - if size is negative.public double upperCumulativeProbability(int x)
x - the value at which the CDF is evaluated.
private double innerCumulativeProbability(int x0,
int x1,
int dx,
int n,
int m,
int k)
x0 - the inclusive, lower boundx1 - the inclusive, upper bounddx - the direction of summation. 1 indicates summing from x0 to x1.
0 indicates summing from x1 to x0.n - the population size.m - number of successes in the population.k - the sample size.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||