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

 Réponse acceptée

Torsten
Torsten le 5 Fév 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.

Catégories

En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by