Learn R Programming

rpgm (version 1.1.2)

evalpoisson: Evaluate the Poisson Process paths at date t

Description

The function evalpoisson evalutes all paths of Poisson processes at date t and returns a vector with the corresponding values

Usage

evalpoisson(P, t = 1)

Arguments

P

list of double vector, a Poisson process simulation of n paths from rpoisson or rinpoisson.

t

double, atomic vector for evaluating each path at date t (do not support yet a vector).

Value

evalpoisson returns an integer vector of the size of the number of paths. The ith element is the value of the ith path of the Poisson process at date t.

References

https://en.wikipedia.org/wiki/Poisson_point_process

See Also

https://pgm-solutions.com/packages

Examples

Run this code
# NOT RUN {
P <- rpoisson(5, 5)
evalpoisson(P, 0.5)
# }

Run the code above in your browser using DataLab