IDAX.DUNIF - Density of the uniform distribution
The DUNIF function returns the probability density that the value of a variable that follows the uniform distribution is equal to x.
Syntax
IDAX.DUNIF(DOUBLE x, DOUBLE minimum, DOUBLE maximum)Parameter descriptions
- x
- Mandatory.
- minimum
- Mandatory.
- maximum
- Mandatory.
DUNIF(x,minimum,maximum)=1/(maximum-minimum) for all x values, minimum values, and maximum
values, where x is between minimum and maximum. If the minimum value is not lower than the maximum
value, or if x is not between the minimum value and the maximum value, DUNIF(x,minimum, maximum) is
null.
Returned information
DOUBLE the probability density at point x.