please explain this statement for img = 1:s(1)

1 次查看(过去 30 天)
which type of for loop is this ? please explain the below statement.Thanks in advance.
for img = 1:s(1)

采纳的回答

KSSV
KSSV 2016-11-17
s should be array which is already defined. It is a for loop which runs from 1 to s(1).
Eg:
s = [5 6 7 8] ;
for img = 1:s(1)
img
end
  4 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

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