Returns the inverse cumulative distribution function evaluated at the given value.
Namespace:
CenterSpace.NMath.StatsAssembly: NMathStats (in NMathStats.dll) Version: 3.4.0.0
Syntax
| C# |
|---|
public override double InverseCDF( double p ) |
| Visual Basic (Declaration) |
|---|
Public Overrides Function InverseCDF ( _ p As Double _ ) As Double |
| Visual C++ |
|---|
public: virtual double InverseCDF( double p ) override |
Parameters
- p
- Type: System..::.Double
A probability between 0 and 1.
Return Value
The x for the cumulative distribution function corresponding to the given probability.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if the given probability is <0.0 or >1.0. |