public class Poisson extends DiscreteDistribution
The Poisson distribution.
References:
Constructor and Description |
---|
Poisson()
Default distribution.
|
Poisson(double m)
Create a distribution with the given mean.
|
Modifier and Type | Method and Description |
---|---|
double |
cumulativeProbability(int x)
The CDF for this distribution.
|
double |
getMean()
Access the mean.
|
int |
inverseCumulativeProbability(double p)
The inverse CDF for this distribution.
|
double |
probability(int x)
The PMF for this distribution.
|
void |
setMean(double m)
Modify the mean.
|
public Poisson()
public Poisson(double m)
m
- the mean.public double cumulativeProbability(int x) throws NumericException
cumulativeProbability
in class DiscreteDistribution
x
- the value at which the CDF is evaluated.NumericException
- if the cumulative probability can not be
computed.public int inverseCumulativeProbability(double p) throws NumericException
inverseCumulativeProbability
in class DiscreteDistribution
p
- the cumulative probability.NumericException
- if the inverse cumulative probability can not be
computed.public double probability(int x)
probability
in class DiscreteDistribution
x
- the value at which the probability is evaluated.public double getMean()
public void setMean(double m)
m
- the new mean value.Jas4pp 1.5 © Java Analysis Studio for Particle Physics