print value of i if the logical statement is TRUE

2 visualizaciones (últimos 30 días)
SALMAN KHAN
SALMAN KHAN el 21 de Abr. de 2021
Comentada: SALMAN KHAN el 21 de Abr. de 2021
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

Respuesta aceptada

Jonas
Jonas el 21 de Abr. de 2021
Editada: Jonas el 21 de Abr. de 2021
if in
disp(i)
end

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by