Random numbers from CDF

2 次查看(过去 30 天)
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!

采纳的回答

Michael Croucher
Michael Croucher 2020-10-29
编辑:Michael Croucher 2020-10-29
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)

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by