Borrar filtros
Borrar filtros

Can somebody give me an example on how to use voronoi(AX,...)

3 visualizaciones (últimos 30 días)
Neysa
Neysa el 2 de Mzo. de 2013
Comentada: HG el 14 de Jun. de 2021
voronoi(AX,...) plots into AX instead of gca. For some reason i can't get this function to work. can somebody give me an example on how to use this?

Respuesta aceptada

ChristianW
ChristianW el 2 de Mzo. de 2013
AX1 = axes('position',[0.1 0.1 0.8 0.4]);
AX2 = axes('position',[0.1 0.6 0.8 0.4]);
x = gallery('uniformdata',[1 10],0);
y = gallery('uniformdata',[1 10],1);
voronoi(AX1,x,y,'r')
voronoi(AX2,x,y,'g')

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