Poisson point process in matlab
I am new with poisson point process. I did one simluation (matlab) as below. My intensity lambda = 50 ; clear all; lambda=50; npoints = poissrnd(lambda); pproc = rand(npoints, 2); plot(pproc(:, 1), pproc(:, 2), '.'); Then I have plot, However, the link http://connor-johnson.com/2014/02/25/spatial-point-processes/ showed me that when intensity lamuda = 0.2, smaller than 1 , he got The link also showed the code in Python.Please check it. Here is my question, why intensity is smaller than 1 , he still can plot something here? If I let my code's lamda = 0.2, there will be no value to plot. I think