package WT; /** This class generates n realizations of a homogeneous Poisson process in the intervall [0, T] with intensity lambda. * */ public class PoissonProcess { public static void main(String[] args) { //the intensity lambda double lambda = 0.2; //the number of iterations int n = 1000; //the border of the interval int T = 100; //the number of random variables (Erneuerungszeitpunkte) int m = 0; for(int i=0;i