2007年11月8日木曜日

ボロノイ図(Voronoi diagram)

 平面上に配置された点群において,各点の勢力圏に応じて平面を分割した図が,二次元のボロノイ図(Voronoi diagram)です。

%---------------- MATLABソース ----------------%
N = 256;
S = 4;
x = rand(N,1)*S; % 点x
y = rand(N,1)*S; % 点y
%Voronoi線図
voronoi(x,y);
print('-dpng','voronoi.png');
%---------------- MATLABソース ----------------%

MATLABによるボロノイ図

0 件のコメント: