Description
Computes the uniform CDF at each of the values in X. The
value returned has the same type, column dimension and
row dimension as X.
The value a and b are the minimum and
maximum respectively.
The values a and b must be a real or double scalars.
The value a must be less than b.
Example
X = [1., 2., 3.]
unifcdf(X, 0, 1)
results in
[ 1 , 2 , 3 ]