DiscreteUniformDistributionInverseLeftProbability Method |
Computes the value corresponding to the given percentile.
Namespace:
Meta.Numerics.Statistics.Distributions
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public override int InverseLeftProbability(
double P
)
Public Overrides Function InverseLeftProbability (
P As Double
) As Integer
public:
virtual int InverseLeftProbability(
double P
) override
abstract InverseLeftProbability :
P : float -> int
override InverseLeftProbability :
P : float -> int
Parameters
- P
- Type: SystemDouble
The percentile.
Return Value
Type:
Int32The smallest k such that P
0 + P
1 + ⋯ + P
k > P
Remarks The smallest k such that LeftInclusiveProbability of k is greater than the given P.
See Also