public interface ContinuousDistribution extends Distribution
Modifier and Type | Method and Description |
---|---|
double |
getDensity(double value)
In probability theory, a probability density function (pdf), or density of a continuous random variable
is a function that describes the relative likelihood for this random variable to occur at a given
point.
|
double |
getDistribution(double value)
In probability theory and statistics, the cumulative distribution function (CDF), or just distribution
function, describes the probability that a real-valued random variable X with a given probability
distribution will be found at a value less than or equal to x.
|
default double |
getProbability(double value)
Deprecated.
v48 Use
getDensity(double) instead |
double |
getQuantile(double probability)
The quantile function, for any distribution, is defined for real variables between zero and one and is
mathematically the inverse of the cumulative distribution function.
|
getExpected, getStandardDeviation, getVariance
double getDensity(double value)
value
- xdouble getDistribution(double value)
value
- x@Deprecated default double getProbability(double value)
getDensity(double)
insteadvalue
- xdouble getQuantile(double probability)
probability
- P(<=x)Copyright © 2019 Optimatika. All rights reserved.