Effacer les filtres
Effacer les filtres

How am I to generate random numbers with exponential distribution applied?

4 vues (au cours des 30 derniers jours)
How to generate random numbers with the exponential distribution applied, and also given a minimum value of 0.5, and a lambda of 0.2?

Réponse acceptée

Thomas Koelen
Thomas Koelen le 30 Avr 2015
pd = makedist('Exponential','mu', 0.2);
r=0.5+random(pd)
but this gives you values with 0.5 + a random number if you want just the numbers that are bigger than 0.5 do this:
pd = makedist('Exponential','mu', 0.2);
r=0;
while r<0.5
r=random(pd);
end

Plus de réponses (0)

Catégories

En savoir plus sur Random Number Generation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by