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

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

doublecumulativeProbability(double x)
For a random variable X whose values are distributed according to this distribution, this method returns P(X <= x) .
doublecumulativeProbability(double x0, double x1)
For a random variable X whose values are distributed according to this distribution, this method returns P(x0 < X <= x1) .
doubledensity(double x)
Returns the probability density function (PDF) of this distribution evaluated at the specified point x .
doublegetNumericalMean()
Use this method to get the numerical value of the mean of this distribution.
doublegetNumericalVariance()
Use this method to get the numerical value of the variance of this distribution.
doublegetSupportLowerBound()
Access the lower bound of the support.
doublegetSupportUpperBound()
Access the upper bound of the support.
doubleinverseCumulativeProbability(double p)
Computes the quantile function of this distribution.
voidreseedRandomGenerator(long seed)
Reseed the random generator used to generate samples.
doublesample()
Generate a random value sampled from this distribution.
double[]sample(int sampleSize)
Generate a random sample from the distribution.
StringtoString()
Returns a string representation of the object.