Help in creating Voronoi diagram- MATLAB

3 views (last 30 days)
ruban ramalingam
ruban ramalingam on 11 Mar 2019
Commented: zhengyang sun on 5 Dec 2019
I have tried this code available in matlab documentation..
x = gallery('uniformdata',[1 10],0);
y = gallery('uniformdata',[1 10],1);
voronoi(x,y)
Ending with the error
Attempt to execute SCRIPT voronoi as a function:
C:\Users\Administrator\Documents\MATLAB\voronoi.m
Error in don (line 3)
voronoi(x,y)
How to sort out this error?
  2 Comments
Bjorn Gustavsson
Bjorn Gustavsson on 11 Mar 2019
Moost likely you have another script voronoi.m on your matlab path. Try:
which voronoi -all
...to find out.
HTH

Sign in to comment.

Answers (0)

Categories

Find more on Voronoi Diagram in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!