필터 지우기
필터 지우기

Determining area considering nodes arranged in space in an almost circular shape

조회 수: 1 (최근 30일)
Hi. I have the attached nodes arranged in space. I would like to calculate the area having the nodes as boundaries.
I'm trying this way but it doesn't seem to work (the blue line does not follow the red nodes).
figure
x = plane_new(:,1);
y = plane_new(:,2);
k = boundary(x(:),y(:));
plot(x,y,'.-r')
line(x(k),y(k))
A = polyarea(x(k),y(k));

채택된 답변

Dyuman Joshi
Dyuman Joshi 2024년 1월 16일
Directly use polyarea -
load('plane_new.mat')
x = plane_new(:,1);
y = plane_new(:,2);
plot(x,y,'.-r')
A = polyarea(x,y)
A = 42.3674

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Sources에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by