Voronoi Diagram in Dashed Lines

11 visualizaciones (últimos 30 días)
Chad
Chad el 30 de Mzo. de 2020
Comentada: HG el 14 de Jun. de 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?

Respuesta aceptada

darova
darova el 30 de Mzo. de 2020
Try to grab only handles of voronoi lines
set(h(2:end),'linestyle','--')
  2 comentarios
Chad
Chad el 30 de Mzo. de 2020
Thank you, that worked

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Voronoi Diagram en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by