Uniform Distribution |
Distributions associated with the Uniform Equation:
x/(b − a)
dunif(x, a, b) Returns the probability density for value x.
punif(x, a, b) Returns the cumulative probability distribution for value x.
qunif(p, a, b) Returns the inverse cumulative probability distribution for probability p.
rnd(x) Returns a uniformly distributed random number between 0 and x.
runif(m, a, b) Returns a vector of m random numbers having the uniform distribution.