如何用MATLAB计算多边形的几何中心

在MATLAB中,计算多边形的几何中心(又称质心或重心)可以通过以下步骤实现。假设你有一个多边形,其顶点按照顺时针或逆时针顺序排列在一个矩阵中。具体步骤如下:

  1. 定义多边形顶点 :首先,你需要将多边形的顶点坐标存储在一个矩阵中。例如,假设你的多边形顶点为,,...,,则可以将它们存储在一个 n×2 的矩阵 vertices 中。

  2. 计算几何中心:使用多边形顶点的坐标,通过公式计算几何中心。

多边形的几何中心坐标 可以通过以下公式计算:

其中,A 是多边形的面积,计算公式为:

下面是MATLAB代码,用于计算多边形的几何中心:

Matlab 复制代码
function [Cx, Cy] = polygonCentroid(vertices)  
    % Number of vertices  
    n = size(vertices, 1);  
      
    % Ensure the vertices are in a closed polygon (the last vertex should be the same as the first)  
    if ~isequal(vertices(end,:), vertices(1,:))  
        vertices(end+1, :) = vertices(1, :);  
        n = n + 1;  
    end  
      
    % Initialize variables for the sums  
    sumCx = 0;  
    sumCy = 0;  
    area = 0;  
      
    % Loop over vertices  
    for i = 1:n-1  
        x1 = vertices(i, 1);  
        y1 = vertices(i, 2);  
        x2 = vertices(i+1, 1);  
        y2 = vertices(i+1, 2);  
          
        % Calculate the area term  
        crossProduct = x1 * y2 - x2 * y1;  
        area = area + crossProduct;  
          
        % Calculate the sum for Cx and Cy  
        sumCx = sumCx + (x1 + x2) * crossProduct;  
        sumCy = sumCy + (y1 + y2) * crossProduct;  
    end  
      
    % Calculate the scaled area  
    area = area / 2;  
      
    % Ensure the area is not zero (to avoid division by zero)  
    if area == 0  
        error('The polygon area is zero, check the vertices.');  
    end  
      
    % Calculate the centroid coordinates  
    Cx = sumCx / (6 * area);  
    Cy = sumCy / (6 * area);  
end  
  

使用方法

Matlab 复制代码
clc;close all;clear all;warning off;%清除变量
rand('seed', 100);
randn('seed', 100);
format long g;

p =[27.6177681446901          24.4271853914931
    26.9564380155505          27.2100207716501
    22.7866669489879          26.9872271275884
    22.4598242645914          26.0383172616035
    23.6707146140053          22.2069731560275
    27.6177681446901          24.4271853914931];


[Cx, Cy] = polygonCentroid(p);
figure;
plot(p(:,1),p(:,2),'b-','LineWidth',2);
hold on;
plot(Cx, Cy,'r.','MarkerSize',20);

程序结果:

相关推荐
神经星星1 分钟前
无需预对齐即可消除批次效应,东京大学团队开发深度学习框架STAIG,揭示肿瘤微环境中的详细基因信息
人工智能·深度学习·机器学习
神经星星1 分钟前
【vLLM 学习】调试技巧
人工智能·机器学习·编程语言
呵呵哒( ̄▽ ̄)"1 分钟前
线性代数:同解(1)
python·线性代数·机器学习
SweetCode7 分钟前
裴蜀定理:整数解的奥秘
数据结构·python·线性代数·算法·机器学习
ゞ 正在缓冲99%…20 分钟前
leetcode76.最小覆盖子串
java·算法·leetcode·字符串·双指针·滑动窗口
xuanjiong21 分钟前
纯个人整理,蓝桥杯使用的算法模板day2(0-1背包问题),手打个人理解注释,超全面,且均已验证成功(附带详细手写“模拟流程图”,全网首个
算法·蓝桥杯·动态规划
惊鸿.Jh40 分钟前
【滑动窗口】3254. 长度为 K 的子数组的能量值 I
数据结构·算法·leetcode
明灯L41 分钟前
《函数基础与内存机制深度剖析:从 return 语句到各类经典编程题详解》
经验分享·python·算法·链表·经典例题
databook42 分钟前
不平衡样本数据的救星:数据再分配策略
python·机器学习·scikit-learn
碳基学AI1 小时前
哈尔滨工业大学DeepSeek公开课:探索大模型原理、技术与应用从GPT到DeepSeek|附视频与讲义免费下载方法
大数据·人工智能·python·gpt·算法·语言模型·集成学习