How to use not equal in for loop
Ältere Kommentare anzeigen
Is it possiable to use ~= in for loop like
for t ~= 1
xxx
xxx
xxx
end
Antworten (1)
James Tursa
am 10 Aug. 2020
Bearbeitet: James Tursa
am 10 Aug. 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
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!