Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How can I calculate the area between two wawe lines of two agents?

조회 수: 1 (최근 30일)
alireza shirazi
alireza shirazi 2019년 1월 15일
마감: MATLAB Answer Bot 2021년 8월 20일
Hi, I have two set of points from a big matrix which I want to calculate the area between 2 line and then fill them. M and N are x / y positions of beetle and Ant in a forest. Previous answers in mathwork didnt work for me. Thanks a lot.
x1=M(M(:,3)==1 & M(:,1)==1 & M(:,4),5);
y1=M(M(:,3)==1 & M(:,1)==1 & M(:,4),6);
plot (x1,y1)
hold on
x2=N(N(:,3)==1 & N(:,1)==2 & N(:,4),5);
y2=N(N(:,3)==1 & N(:,1)==2 & N(:,4),6);
plot (x2,y2)
hold off

답변 (1개)

KSSV
KSSV 2019년 1월 15일
Read about polyarea, trapz

Community Treasure Hunt

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

Start Hunting!

Translated by