I am facing a problem as follows : I want to make poisson voronoi diagram & for this I have to appropriately choose some generating points. Sources on internet(WIKI) refers that these points have to be obtained from poisson processes. So, how can I go about doing this in Mathematica? [I have little exposure to Poisson processes or for that matter any other process.]
Asked
Active
Viewed 95 times
1 Answers
2
vMesh = VoronoiMesh[
myPts = RandomVariate[UniformDistribution[{{0, 1}, {0, 1}}], 50]];
Show[vMesh, Graphics[Point /@ myPts]]

David G. Stork
- 29,774
RandomVariate[PoissonDistribution[(* stuff *)]]is an integer, right? That is the number of points you need to generate in the cell that number is associated with. – J. M. ain't a mathematician Jun 10 '15 at 11:06