print value of i if the logical statement is TRUE

7 次查看(过去 30 天)
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