Uniform distribution command for specific mean and standard deviation

can we calculate Gaussian and uniform distribution with specific mean and standard deviations(s.d)
for Gaussian there is a MATLAB command
s.d.*randn(N,1)+mean
similarly is there any command for uniform distribution

 Accepted Answer

(mean-sqrt(12)/2*s.d.) + sqrt(12)*s.d.*rand(N,1)
is uniformly distributed on
[a:b] = [m-sqrt(12)/2*s.d.:m+sqrt(12)/2*s.d.]
with the prescribed mean and standard deviation.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!