Effacer les filtres
Effacer les filtres

Random numbers from CDF

5 vues (au cours des 30 derniers jours)
Hannah Taylor
Hannah Taylor le 29 Oct 2020
Hello,
I have a probability distribution with a specified sigma and mu, I've converted this into a pdf and cdf but I'm struggling to work out how to extract random numbers from this cdf? Could anyone point me in the direction of any advice / examples - thanks!
Here's what I have so far:
rng('shuffle')
pd = makedist('normal',"mu",1.124,"sigma",0.903);
x=[0:0.001:5]; %I need my random numbers to be between 0 and 5.
y=pdf(pd,x);
c=cdf(pd,x);
d=scatter(x,c) %sense check to see if this looks as expected!

Réponse acceptée

Michael Croucher
Michael Croucher le 29 Oct 2020
Modifié(e) : Michael Croucher le 29 Oct 2020
You can pass your pd to the random function. Does this do what you want? To get a 100000 by 1 vector of random numbers from your distribution:
random_draws = random(pd,100000,1)

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by