x=1;
while x>0
x+1
end

2 commentaires

KSSV
KSSV le 28 Oct 2020
This is an infinite loop...it will not stop....to force stop use ctrl + c .
Ramesh Singh
Ramesh Singh le 28 Oct 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

Connectez-vous pour commenter.

 Réponse acceptée

KSSV
KSSV le 28 Oct 2020

0 votes

You can set a condition like below and exit the while loop.
x=1;
while x<10
x = x+1 ;
end

Plus de réponses (1)

Alan Stevens
Alan Stevens le 28 Oct 2020

0 votes

Use a condition inside the while loop, such as
if x>10, break, end

Catégories

En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange

Produits

Version

R2019b

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by