Uniform distribution command for specific mean and standard deviation

12 views (last 30 days)
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

Torsten
Torsten on 5 Feb 2019
(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.

More Answers (1)

karthik reddy
karthik reddy on 7 Feb 2019
Thank you Torsten

Tags

Community Treasure Hunt

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

Start Hunting!