MATLAB: Hi,,is there anyone who could tell me how to use a loop control statement in matlab? or how to use iterative loops in matlab

flagiterative statementsloop control statements

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?

Best Answer

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