Plotting voronoi tesselations without its seeds
2 次查看(过去 30 天)
显示 更早的评论
I am trying to get a picture of a voronoi tesselation and I am using the Voronoi command to do it. The problem I encounter is that this command plots the seeds that I fed to create the figure and I have not been able to figure out how to undo this.
0 个评论
回答(1 个)
Akira Agata
2020-3-17
How about the following?
% Seeds
x = gallery('uniformdata',[1 10],0);
y = gallery('uniformdata',[1 10],1);
% Calculate Voronoi diagram
[vx,vy] = voronoi(x,y);
% Visualize the result
figure
plot(vx,vy,'b-')
% Uncomment this part, if you want to show the seeds
% hold on
% plot(x,y,'rx')
xlim([min(x) max(x)])
ylim([min(y) max(y)])
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Voronoi Diagram 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!