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

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

Introduction

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

The text is from its open source code.

Implementation

org.apache.commons.math3.distribution.IntegerDistribution has the following implementations.
Click this link to see all its implementation.

Method

doublecumulativeProbability(int x)
For a random variable X whose values are distributed according to this distribution, this method returns P(X <= x) .
doublegetNumericalMean()
Use this method to get the numerical value of the mean of this distribution.
intgetSupportLowerBound()
Access the lower bound of the support.
intgetSupportUpperBound()
Access the upper bound of the support.
doubleprobability(int x)
For a random variable X whose values are distributed according to this distribution, this method returns P(X = x) .
voidreseedRandomGenerator(long seed)
Reseed the random generator used to generate samples.
intsample()
Generate a random value sampled from this distribution.
int[]sample(int sampleSize)
Generate a random sample from the distribution.
StringtoString()
Returns a string representation of the object.