Power Diagrams

This program computes the power diagram for a given set of weighted points.
1.6K 次下载
更新时间 2014/3/24

查看许可证

A power diagram is a form of generalized Voronoi diagram, generated by a set of points and their corresponding weights. This program computes the power diagram for a given set of weighted points by finding its dual triangulation. It returns a cell of cells, PD, where the first index corresponds to the dimension of the pieces of the power diagram, and the second index refers to the specific piece. It also generates points along infinite edges of the power diagram, which are returned in PDinf.
% sample input for 2D Voronoi diagram
E = rand(100,2);
wts = zeros(100,1);

[PD, PDinf] = powerDiagramWrapper(E, wts);

引用格式

Frederick McCollum (2024). Power Diagrams (https://www.mathworks.com/matlabcentral/fileexchange/44385-power-diagrams), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2013a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Voronoi Diagram 的更多信息
致谢

启发作品: Fast Bounded Power Diagram

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.2.0.0

corrected the title of a function being called on line 29 of powerdiagram.m, from "powercenters" to "powercentersPD"

1.1.0.0

The program now generates a figure for 2D power diagrams.

1.0.0.0