Plotting voronoi tesselations without its seeds

2 vues (au cours des 30 derniers jours)
Sebastian Naranjo
Sebastian Naranjo le 19 Fév 2020
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.

Réponses (1)

Akira Agata
Akira Agata le 17 Mar 2020
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)])

Catégories

En savoir plus sur Voronoi Diagram dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by