使用Matlab的voronoi函数可以轻松绘制二维Voronoi图。例如,以下示例代码展示了如何用voronoi函数绘制包含10个随机点的Voronoi图:rand('state',5); x = rand(1,10); y = rand(1,10); voronoi(x,y)