I want to generate a process where in every step there is a realisation of a Poisson random variable, this realisation should be saved and then it should be realize the next Poisson random variable and add it to the sum of all realisations before. Furthermore there should be a chance that in every step this process stops. Hope that makes sense to you guys... Any thought is appreciated!
feedback
|
|
More compactly, pick a single geometrically distributed random number for the total number of steps achieved before stopping, then use
| ||||
|
feedback
|
|
You are very vague on the parameters of your simulation but how's this? Lambda for random Poisson number.
This is the threshold value when the function exits.
Create a vector of length 1000.
Run the darn thing. It basically rolls a "dice" (values generated are between 0 and 1). If the values is below
Remove zeros if any.
You can use
| |||||||||
feedback
|