how to declare two variables together in the for loop

1 vue (au cours des 30 derniers jours)
Prabha Kumaresan
Prabha Kumaresan le 6 Jan 2018
Commenté : Rik le 6 Jan 2018
how to declare two variables together in the for loop
  1 commentaire
Rik
Rik le 6 Jan 2018
It works the exact same way as outside a loop. The only thing to keep in mind is that the loop is repeated, so your assignment might be overwritten.

Connectez-vous pour commenter.

Réponses (1)

Stephen23
Stephen23 le 6 Jan 2018
R = 1:4;
C = 2:5;
for k = 1:numel(C)
r = R(k);
c = C(k);
...
end

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by