 | NegativeBinomialDistributionPDF Method |
Returns the probability distribution function evaluated at the given value.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic override double PDF(
double x
)
Public Overrides Function PDF (
x As Double
) As Double
public:
virtual double PDF(
double x
) override
abstract PDF :
x : float -> float
override PDF :
x : float -> float
Parameters
- x Double
- The number of trials
Return Value
Double
The probability of obtaining
this.N successes in
x trials,
where
this.P is the probability of success on each trial.
Exceptions
Remarks
Returns zero for x < N. It's impossible to have more successes than
trials.
See Also