Borrar filtros
Borrar filtros

how to stop executing while loop?

2 visualizaciones (últimos 30 días)
Ramesh Singh
Ramesh Singh el 28 de Oct. de 2020
Comentada: Ramesh Singh el 28 de Oct. de 2020
x=1;
while x>0
x+1
end
  2 comentarios
KSSV
KSSV el 28 de Oct. de 2020
This is an infinite loop...it will not stop....to force stop use ctrl + c .
Ramesh Singh
Ramesh Singh el 28 de Oct. de 2020
i already type this statement and it run , then i type clc clear delete variable it does't work,
thank kssv ctrl+c is right to stop

Iniciar sesión para comentar.

Respuesta aceptada

KSSV
KSSV el 28 de Oct. de 2020
You can set a condition like below and exit the while loop.
x=1;
while x<10
x = x+1 ;
end

Más respuestas (1)

Alan Stevens
Alan Stevens el 28 de Oct. de 2020
Use a condition inside the while loop, such as
if x>10, break, end

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by