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
  1 件のコメント
SALMAN KHAN
SALMAN KHAN 2021 年 4 月 21 日
Thank you man, it working.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by