Filter löschen
Filter löschen

Area of multiple polygons

3 Ansichten (letzte 30 Tage)
SUSHMA MB
SUSHMA MB am 10 Apr. 2015
Kommentiert: SUSHMA MB am 13 Apr. 2015
I have a cell which contains coordinates of different polygon,
eg: if 'A' is a cell which have coordinates of 26 polygon, so its size is 1x26.
Now i want to obtain the area of each individual polygon in the cell. How i can get that? I dont want the sum of area of all polygons, but want the area of individual polygons.
  3 Kommentare
SUSHMA MB
SUSHMA MB am 11 Apr. 2015
I am attaching the file which has the coordinates with in it. How can i get the area of each individual?
SUSHMA MB
SUSHMA MB am 13 Apr. 2015
Can anyone please answer this question.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Stalin Samuel
Stalin Samuel am 13 Apr. 2015
Bearbeitet: Stalin Samuel am 13 Apr. 2015
for i1=1:26
data =mycoordinates{i1}%coordinate of i1th polygon
data(end+1,:) =data(1,:)
for i=1:max(size(data))-1
s(i)=data(i,1) *data(i+1,2)-data(i,2)*data(i+1,1)
end
area(i1) = abs(sum(s)/2)
end
  1 Kommentar
SUSHMA MB
SUSHMA MB am 13 Apr. 2015
Is it for area of each individual polygon?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Elementary Polygons finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by