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

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

Introduction

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

The text is from its open source code.

Constructor

HypergeometricDistribution(int populationSize, int numberOfSuccesses, int sampleSize)
Construct a new hypergeometric distribution with the specified population size, number of successes in the population, and sample size.
HypergeometricDistribution(RandomGenerator rng, int populationSize, int numberOfSuccesses, int sampleSize)
Creates a new hypergeometric distribution.

Method

doublecumulativeProbability(int x)
doubleprobability(int x)
doubleupperCumulativeProbability(int x)
For this distribution, X , this method returns P(X >= x) .