Power Diagrams

This program computes the power diagram for a given set of weighted points.

이 제출물을 팔로우합니다

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 (2026). Power Diagrams (https://kr.mathworks.com/matlabcentral/fileexchange/44385-power-diagrams), MATLAB Central File Exchange. 검색 날짜: .

도움

도움 준 파일: Fast Bounded Power Diagram

카테고리

Help CenterMATLAB Answers에서 Voronoi Diagrams에 대해 자세히 알아보기

일반 정보

MATLAB 릴리스 호환 정보

  • 모든 릴리스와 호환

플랫폼 호환성

  • Windows
  • macOS
  • Linux
버전 퍼블리시됨 릴리스 정보 Action
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