For with Break
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi all.Please Help me.
How I can use for with break. "
for i=1:n;
%action
if H == 1 ; break
end
end
Respuesta aceptada
Teja Muppirala
el 7 de Mayo de 2011
Seems like you've got the right idea:
for n=1:100
disp(n)
if n == 7
disp('Hello everybody')
break
end
end
2 comentarios
Teja Muppirala
el 7 de Mayo de 2011
One more example:
n = 100;
for k=1:n
k
H = k^2;
if H == 36
disp('H is now 36. I will stop')
break
end
end
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!