What is the best way to execute 2 if conditions in MATLAB

2 次查看(过去 30 天)
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

采纳的回答

José-Luis
José-Luis 2014-4-30
编辑:José-Luis 2014-4-30
for ii = 1:numel(w)
if (w(ii) == 1)
%stuff
else if (q(ii) == 1)
%stuff
else
%stuff
end
end
Please accept an answer if it helps you.

更多回答(1 个)

Walter Roberson
Walter Roberson 2014-4-30
if w(i) == 1
do somehing
elseif q(i) == 1
do some thing
else
do somthing
end
  2 个评论
yousef Yousef
yousef Yousef 2014-4-30
Thanks for your answer.I just want to know about the third statement,will the program check w or q .I guess w? Thanks
José-Luis
José-Luis 2014-5-1
It will check nothing. It will run that bit only if any of the first two conditions are not satisfied.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by