What is the best way to execute 2 if conditions in MATLAB
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
yousef Yousef
am 30 Apr. 2014
Kommentiert: José-Luis
am 1 Mai 2014
assume w=[1 2 2 2]
q=[2 1 1 1]
if w(i)==1
do somehing
else
look to q(i)
if q(i)==1
do some thing
else
do somthing
end
end
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 30 Apr. 2014
if w(i) == 1
do somehing
elseif q(i) == 1
do some thing
else
do somthing
end
2 Kommentare
José-Luis
am 1 Mai 2014
It will check nothing. It will run that bit only if any of the first two conditions are not satisfied.
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!