print value of i if the logical statement is TRUE

조회 수: 2 (최근 30일)
SALMAN KHAN
SALMAN KHAN 2021년 4월 21일
댓글: SALMAN KHAN 2021년 4월 21일
If I have to print the value of i , when the logical statement is correct, where X and Y are vertices or triangles.. anyone please let me know. thanks
xp = 0; yp = 0;
for i = 1:length(T)
xT = X(T(i,:));
yT = Y(T(i,:));
[in,on] = inpolygon(xp,yp,xT,yT);
end

채택된 답변

Jonas
Jonas 2021년 4월 21일
편집: Jonas 2021년 4월 21일
if in
disp(i)
end

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by