How to set flags in MATLAB?
45 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How to set flags in MATLAB ,,
flag1=0;
Do this;
flag2=1;
Do this;
1 Kommentar
Jan
am 4 Jan. 2013
The question is not clear yet. The shown code runs without problems, but I guess you want to get a specific behavior but did not explain this.
Antworten (2)
Muruganandham Subramanian
am 4 Jan. 2013
Bearbeitet: Muruganandham Subramanian
am 4 Jan. 2013
Do this, by if() operation
e.g.
if a==0
%do this
else if a==1
%do this
end
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!