Determining area considering nodes arranged in space in an almost circular shape
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Alberto Acri
el 16 de En. de 2024
Respondida: Dyuman Joshi
el 16 de En. de 2024
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));
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 16 de En. de 2024
load('plane_new.mat')
x = plane_new(:,1);
y = plane_new(:,2);
plot(x,y,'.-r')
A = polyarea(x,y)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!