How to use not equal in for loop
14 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Is it possiable to use ~= in for loop like
for t ~= 1
xxx
xxx
xxx
end
0 Commenti
Risposte (1)
James Tursa
il 10 Ago 2020
Modificato: James Tursa
il 10 Ago 2020
You could use a while loop. E.g.,
t = 0;
while( t ~= 1 )
% code
% at some point, either set t=1 or break out of loop
end
0 Commenti
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!