if statement with changing values
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Joel Schelander
 el 25 de Mzo. de 2021
  
    
    
    
    
    Comentada: Stephen23
      
      
 el 26 de Mzo. de 2021
            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
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

