calculate surface area from xy coordinates (R2017a)

조회 수: 20 (최근 30일)
Grishelda Athallah
Grishelda Athallah 2020년 10월 22일
답변: KSSV 2020년 10월 22일
hello, so I have this x y coordinates of a foot from 3d scanning (graphical form as shown in the picture), can I use matlab to calculate the surface area based on the division of the area like this (ex: midfoot, heel)? or should i divide the area first and then calculate the area later? thank you in advance

답변 (1개)

KSSV
KSSV 2020년 10월 22일
Let (x,y) be your coordinates....
idx = boundary(x,y) ;
bx = x(idx) ; by = y(idx) ;
A = polyarea(bx,by) ;

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by