For example, I have a p.d.f f(x) = 1/25 - x/1250 (from x = 0 to 50); My question is that how to generate a set of values that satisfy the given p.d.f. Please give an idea about how to implement in c++ or java. Thanks so much.
|
I don't know about directly from a pdf, but you can convert a pdf to a cdf (by integrating) and then use inverse transform sampling. This assumes that you have a technique to generate a random number Once you have generated such a |
|||||
|
|
If your values-set is discrete, a valid algorithm is described in the article "A Linear Algorithm For Generating Random Numbers With a Given Distribution". The algorithm contains a simple pseudo-code, and has O(n) time, where n is the set size. When the pdf is not discrete, as in your example, see section 5.1 in "Introduction to Monte Carlo Simulation". |
|||||
|
|
|
Your function is similar to
Then I used the following code to check the result:
The resulting image looked pretty good to me. |
||||
|
|