Basic loop syntax in MATLAB: for k=1:n

20 次查看(过去 30 天)
What does it mean
for k=1:n

回答(2 个)

Sean de Wolski
Sean de Wolski 2011-1-28
it means that everything between that line
k = 1:n
and
end
will be evaluated with k = every integer between 1 and n.
doc for
for more information

Walter Roberson
Walter Roberson 2011-1-28
(Adjusting Sean's answer):
it means that everything between that line
k = 1:n
and
end
will be evaluated with k = every integer starting at 1 and not exceeding n; no iterations will be done at all if n < 1
doc for
for more information
  4 个评论
Matt Fig
Matt Fig 2011-1-28
Jan, how do you remember these things! There are obviously no angry armadillos bouncing around in your head.

请先登录,再进行评论。

类别

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