if statement with changing values

4 次查看(过去 30 天)
I have a for loop that loops over vehicles. I have 2 houses. Each can have one or two cars:
ID1=178 or ID1=[178 180]
ID2=182 or ID2=[178 184}
I want to houses to never have the same vehicle.
I have tried this, but since ID1 and ID2 change size between 1 and 2 for each iteration it won't work. Can I overcome this somehow?
if ID1(1)==ID2(1)
continue
end
if ID1(2)==ID2(1)
continue
end
if ID1(2)==ID2(2)
continue
end

采纳的回答

Stephen23
Stephen23 2021-3-25
编辑:Stephen23 2021-3-25
if numel(intersect(ID1,ID2))
  2 个评论
Joel Schelander
Joel Schelander 2021-3-25
Thanks, I will consider more houses later, does the same apply for:
%Removes all doubles
if numel(intersect(ID1,ID2,ID3))
continue
end
Stephen23
Stephen23 2021-3-26
Intersect is only defined for two input arrays.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Automated Driving Toolbox 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by