ContinuousUniformDistributionQuantile(Double, Double, Double) Method |
Returns the quantile function (inverse CDF) for the continuous uniform distribution.
Namespace: Altaxo.Calc.ProbabilityAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic static double Quantile(
double p,
double low,
double high
)
Parameters
- p Double
- Cumulative probability (0..1).
- low Double
- Lower bound of the distribution.
- high Double
- Upper bound of the distribution.
Return Value
DoubleThe value
q such that
CDF(q) == p.
See Also