powered by
The function rpoisson is a C-level function which simulates the jumping times of a Poisson process, returning each path as a vector of a list.
rpoisson
rpoisson(n, lambda = 1, T = 1, drop = TRUE)
integer, number of paths.
double, intensity of the Poisson process.
double, end time of the simulations.
logical, if n = 1 and drop = TRUE, returns the single path as a vector instead of a list.
n = 1
drop = TRUE
rpoisson returns a list of n paths of a Poisson process of intensity lambda. Each element of the list is the vector of the jumping times.
https://en.wikipedia.org/wiki/Poisson_point_process#Homogeneous_Poisson_point_process
https://pgm-solutions.com/packages
# NOT RUN { x <- rpoisson(5, 5) # }
Run the code above in your browser using DataLab