How can I split the excuation of multiple for loops ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
omar th
el 24 de En. de 2023
Comentada: omar th
el 25 de En. de 2023
If I have two for loops each of them has index values =5 and these loops inside let say outer for loop as illustrated in the code below.
I want to run the first loop after that run the second loop and back to the first loop to run the second index value and back again to the second loop to excute the second index value and so forth. I want show the result in this order,
X1(i)=1, X2(j)=1, X1(i)=2, X2(j)=2, X1(i)=3, X2(j)=3 ,and so on....
.....Thanks in advance for any help and comment
for k = 1:10
for i=1:5
X1(i) = do some calculation % First loop
end
for j=1:5
X2(j) = do some calculation % Second loop
end
end
0 comentarios
Respuesta aceptada
KSSV
el 24 de En. de 2023
Editada: KSSV
el 24 de En. de 2023
for k = 1:10
for i=1:5
X1(i) = do some calculation
X2(i) = do some calculation
end
end
3 comentarios
Steven Lord
el 24 de En. de 2023
Try it and see!
for k = 1:3 % Let's use a smaller outer loop limit
for m = 1:3 % And a smaller inner limit
X1(m) = k+m.^2
X2(m) = k+m.^3
end
end
Más respuestas (0)
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!