Voronoi Diagram in Dashed Lines

3 vues (au cours des 30 derniers jours)
Chad
Chad le 30 Mar 2020
Commenté : HG le 14 Juin 2021
I'm trying to plot a voronoi diagram using dashed lines instead of solid. I am using vectors X and Y.
voronoi(X,Y,'r','LineStyle','--')
The code above returns a "Too many Arguments" error
v = voronoi(X,Y,'r')
set(v,'LineStyle','--')
The code above actually does make the voronoi into dashed lines, but it also plots X and Y as dashed lines, and I have no idea why. Any ideas?

Réponse acceptée

darova
darova le 30 Mar 2020
Try to grab only handles of voronoi lines
set(h(2:end),'linestyle','--')
  2 commentaires
Chad
Chad le 30 Mar 2020
Thank you, that worked
HG
HG le 14 Juin 2021

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by