Generate n samples of random variables based on a given discrete uniform distributions. Can anyone tell me what is the difference between the codes I wrote?

6 次查看(过去 30 天)
Question: Write a MATLAB program to sample K values from the probability mass function Pi=i/55, i=1, 2, ….10. Plot the histogram of generated values for K=50, 500, and 5000.
Version 1:
Version 2:
I am new to Matlab. I don't know the difference, but both codes get the same results.
Thanks in advance!

采纳的回答

Walter Roberson
Walter Roberson 2020-9-8
The first code generates one new random number each time through the loop, for a total of sampleK random numbers generated out of which sampleK random numbers are used.
The second code generates sampleK random numbers each time through the loop, and uses the i'th of them, ignorning the others, for a total of sampleK * sampleK random numbers generated out of which sampleK random numbers are used.
If you were to move the
u = rand(sampleK,1);
to before the for loop, then you would be making one call that generated sampleK random numbers all at one time, and then used one at a time. That would be more efficient than generating one random number sampleK times.
  4 个评论
DDD
DDD 2020-9-8
编辑:DDD 2020-9-10
Honestly, when I saw this question, my first instinct was to solve it using randsample().
The following is what I did, but I am required to solve this question using a uniform random number generator.
Deleted

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by