Uses of Interface
org.hipparchus.distribution.IntegerDistribution
-
Packages that use IntegerDistribution Package Description org.hipparchus.distribution.discrete Implementations of common discrete distributions.org.hipparchus.random Random number and random data generators.org.hipparchus.samples Various examples. -
-
Uses of IntegerDistribution in org.hipparchus.distribution.discrete
Classes in org.hipparchus.distribution.discrete that implement IntegerDistribution Modifier and Type Class Description class
AbstractIntegerDistribution
Base class for integer-valued discrete distributions.class
BinomialDistribution
Implementation of the binomial distribution.class
EnumeratedIntegerDistribution
Implementation of an integer-valuedEnumeratedDistribution
.class
GeometricDistribution
Implementation of the geometric distribution.class
HypergeometricDistribution
Implementation of the hypergeometric distribution.class
PascalDistribution
Implementation of the Pascal distribution.class
PoissonDistribution
Implementation of the Poisson distribution.class
UniformIntegerDistribution
Implementation of the uniform integer distribution.class
ZipfDistribution
Implementation of the Zipf distribution. -
Uses of IntegerDistribution in org.hipparchus.random
Methods in org.hipparchus.random with parameters of type IntegerDistribution Modifier and Type Method Description int
RandomDataGenerator. nextDeviate(IntegerDistribution dist)
Returns a random deviate from the given distribution.int[]
RandomDataGenerator. nextDeviates(IntegerDistribution dist, int size)
Returns an array of random deviates from the given distribution. -
Uses of IntegerDistribution in org.hipparchus.samples
Methods in org.hipparchus.samples with parameters of type IntegerDistribution Modifier and Type Method Description static void
IntegerDistributionComparison. addCDFSeries(com.xeiam.xchart.Chart chart, IntegerDistribution distribution, String desc, int lowerBound, int upperBound)
static void
IntegerDistributionComparison. addPDFSeries(com.xeiam.xchart.Chart chart, IntegerDistribution distribution, String desc, int lowerBound, int upperBound)
static JComponent
IntegerDistributionComparison. createComponent(String distributionName, int minX, int maxX, String[] seriesText, IntegerDistribution... series)
-