Hi,,is there anyone who could tell me how do I use a loop control statement in matlab? or how do I use iterative loops in matlab?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
nafila aytija
il 10 Giu 2016
Risposto: Geoff Hayes
il 10 Giu 2016
how do I execute and control a statement for several time? In C++,flag=true/false,could be used.How do I do that in Matlab?
0 Commenti
Risposta accettata
Geoff Hayes
il 10 Giu 2016
nafila - see loop control statements for some examples on how to use for or while loops. Using your C++ example, you could do something like
flag = true;
while flag
% do some work
if someConditionMet
flag = false;
end
end
0 Commenti
Più risposte (0)
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!