Running 2 counters in 1 for loop simultaneously
    9 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Wasim Ramadan
 el 28 de Abr. de 2020
  
    
    
    
    
    Respondida: Voss
      
      
 el 27 de Dic. de 2022
            I am trying to run a for loop that has 2 counters instead of one. Example
for i=1:2 j=0:12:12 ....
So, first iteration i=1 and j=0 second iteration i=2 and j=12
2 comentarios
  felimon mina
 el 27 de Dic. de 2022
				
      Editada: felimon mina
 el 27 de Dic. de 2022
  
			because you write j = 0:12:12 so you use a step by 12 , so if you use step by 1 , j = 0:1:12 it runs better
  Voss
      
      
 el 27 de Dic. de 2022
				@felimon mina: What if they want j = 0:12:12 and not j = 0:1:12? Surely, j = 0:1:12 would not be better if the desired behavior was j = 0:12:12, right?
Respuesta aceptada
  Voss
      
      
 el 27 de Dic. de 2022
        i_all = [1 2];
j_all = [0 12];
for idx = 1:numel(i_all)
    i = i_all(idx);
    j = j_all(idx);
    % ...
end
0 comentarios
Más respuestas (1)
  Deepak Gupta
      
 el 28 de Abr. de 2020
        Hi,
you just need to define j outside the loop. And then use it with i as index.
j = 0:12:12;
for i= 1:2
    % Write your code here using j with i as subscript.
    %for example  x(i) = j(i);
end
0 comentarios
Ver también
Categorías
				Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



