how to declare two variables together in the for loop

1 次查看(过去 30 天)
how to declare two variables together in the for loop
  1 个评论
Rik
Rik 2018-1-6
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.

请先登录,再进行评论。

回答(1 个)

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

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by