Function Reference: unifrnd

statistics: r = unifrnd (a, b)
statistics: r = unifrnd (a, b, rows)
statistics: r = unifrnd (a, b, rows, cols, …)
statistics: r = unifrnd (a, b, [sz])

Random arrays from the uniform distribution.

r = unifrnd (a, b) returns an array of random numbers chosen from a uniform distribution on the interval [a, b]. The size of y is the common size of the input arguments. A scalar input functions as a constant matrix of the same size as the other inputs.

When called with a single size argument, return a square matrix with the dimension specified. When called with more than one scalar argument the first two arguments are taken as the number of rows and columns and any further arguments specify additional matrix dimensions. The size may also be specified with a vector of dimensions sz.

See also: unifcdf, unifinv, unifpdf, unifstat

Source Code: unifrnd