Uniform Command

Uniform( <Lower Bound>, <Upper Bound>, <Variable Value> )

Evaluates the cumulative distribution function of a uniform distribution at variable value v, i.e. calculates the probability P(X ≤ v) where X is a random variable with a uniform distribution in [lower bound, upper bound].

Uniform( <Lower Bound>, <Upper Bound>, <Variable Value>, <Boolean Cumulative> )

If Cumulative = true, evaluates the cumulative distribution function of a uniform distribution at the given variable value in [lower bound, upper bound], otherwise it evaluates the probability density function of the distribution at variable value.

Uniform( <Lower Bound>, <Upper Bound>, x, <Boolean Cumulative> )

If Cumulative is true, creates the cumulative distribution function of a uniform distribution in [lower bound, upper bound], otherwise it creates the probability density function of a unifrom distribution in [lower bound, upper bound].